1 /*
   2  * Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.lang.reflect;
  27 
  28 import jdk.internal.access.SharedSecrets;
  29 import jdk.internal.reflect.CallerSensitive;
  30 import jdk.internal.reflect.FieldAccessor;
  31 import jdk.internal.reflect.Reflection;
  32 import jdk.internal.vm.annotation.ForceInline;
  33 import jdk.internal.vm.annotation.Stable;
  34 import sun.reflect.generics.repository.FieldRepository;
  35 import sun.reflect.generics.factory.CoreReflectionFactory;
  36 import sun.reflect.generics.factory.GenericsFactory;
  37 import sun.reflect.generics.scope.ClassScope;
  38 import java.lang.annotation.Annotation;
  39 import java.util.Map;
  40 import java.util.Set;
  41 import java.util.Objects;
  42 import sun.reflect.annotation.AnnotationParser;
  43 import sun.reflect.annotation.AnnotationSupport;
  44 import sun.reflect.annotation.TypeAnnotation;
  45 import sun.reflect.annotation.TypeAnnotationParser;
  46 
  47 /**
  48  * A {@code Field} provides information about, and dynamic access to, a
  49  * single field of a class or an interface.  The reflected field may
  50  * be a class (static) field or an instance field.
  51  *
  52  * <p>A {@code Field} permits widening conversions to occur during a get or
  53  * set access operation, but throws an {@code IllegalArgumentException} if a
  54  * narrowing conversion would occur.
  55  *
  56  * @see Member
  57  * @see java.lang.Class
  58  * @see java.lang.Class#getFields()
  59  * @see java.lang.Class#getField(String)
  60  * @see java.lang.Class#getDeclaredFields()
  61  * @see java.lang.Class#getDeclaredField(String)
  62  *
  63  * @author Kenneth Russell
  64  * @author Nakul Saraiya
  65  * @since 1.1
  66  */
  67 public final
  68 class Field extends AccessibleObject implements Member {
  69     private final Class<?>            clazz;
  70     private final int                 slot;
  71     // This is guaranteed to be interned by the VM in the 1.4
  72     // reflection implementation
  73     private final String              name;
  74     private final Class<?>            type;
  75     private final int                 modifiers;
  76     private final boolean             trustedFinal;
  77     // Generics and annotations support
  78     private final transient String    signature;
  79     private final byte[]              annotations;
  80 
  81     /**
  82      * Fields are mutable due to {@link AccessibleObject#setAccessible(boolean)}.
  83      * Thus, we return a new copy of a root each time a field is returned.
  84      * Some lazily initialized immutable states can be stored on root and shared to the copies.
  85      */
  86     private Field root;
  87     private transient volatile FieldRepository genericInfo;
  88     private @Stable FieldAccessor fieldAccessor; // access control enabled
  89     private @Stable FieldAccessor overrideFieldAccessor; // access control suppressed
  90     // End shared states
  91 
  92     // Generics infrastructure
  93 
  94     private String getGenericSignature() {return signature;}
  95 
  96     // Accessor for factory
  97     private GenericsFactory getFactory() {
  98         Class<?> c = getDeclaringClass();
  99         // create scope and factory
 100         return CoreReflectionFactory.make(c, ClassScope.make(c));
 101     }
 102 
 103     // Accessor for generic info repository
 104     private FieldRepository getGenericInfo() {
 105         var genericInfo = this.genericInfo;
 106         if (genericInfo == null) {
 107             var root = this.root;
 108             if (root != null) {
 109                 genericInfo = root.getGenericInfo();
 110             } else {
 111                 genericInfo = FieldRepository.make(getGenericSignature(), getFactory());
 112             }
 113             this.genericInfo = genericInfo;
 114         }
 115         return genericInfo;
 116     }
 117 
 118     /**
 119      * Package-private constructor
 120      */
 121     @SuppressWarnings("deprecation")
 122     Field(Class<?> declaringClass,
 123           String name,
 124           Class<?> type,
 125           int modifiers,
 126           boolean trustedFinal,
 127           int slot,
 128           String signature,
 129           byte[] annotations)
 130     {
 131         this.clazz = declaringClass;
 132         this.name = name;
 133         this.type = type;
 134         this.modifiers = modifiers;
 135         this.trustedFinal = trustedFinal;
 136         this.slot = slot;
 137         this.signature = signature;
 138         this.annotations = annotations;
 139     }
 140 
 141     /**
 142      * Package-private routine (exposed to java.lang.Class via
 143      * ReflectAccess) which returns a copy of this Field. The copy's
 144      * "root" field points to this Field.
 145      */
 146     Field copy() {
 147         // This routine enables sharing of FieldAccessor objects
 148         // among Field objects which refer to the same underlying
 149         // method in the VM. (All of this contortion is only necessary
 150         // because of the "accessibility" bit in AccessibleObject,
 151         // which implicitly requires that new java.lang.reflect
 152         // objects be fabricated for each reflective call on Class
 153         // objects.)
 154         if (this.root != null)
 155             throw new IllegalArgumentException("Can not copy a non-root Field");
 156 
 157         Field res = new Field(clazz, name, type, modifiers, trustedFinal, slot, signature, annotations);
 158         res.root = this;
 159         // Might as well eagerly propagate this if already present
 160         res.fieldAccessor = fieldAccessor;
 161         res.overrideFieldAccessor = overrideFieldAccessor;
 162         res.genericInfo = genericInfo;
 163 
 164         return res;
 165     }
 166 
 167     /**
 168      * @throws InaccessibleObjectException {@inheritDoc}
 169      * @throws SecurityException {@inheritDoc}
 170      */
 171     @Override
 172     @CallerSensitive
 173     public void setAccessible(boolean flag) {
 174         AccessibleObject.checkPermission();
 175         if (flag) checkCanSetAccessible(Reflection.getCallerClass());
 176         setAccessible0(flag);
 177     }
 178 
 179     @Override
 180     void checkCanSetAccessible(Class<?> caller) {
 181         checkCanSetAccessible(caller, clazz);
 182     }
 183 
 184     /**
 185      * Returns the {@code Class} object representing the class or interface
 186      * that declares the field represented by this {@code Field} object.
 187      */
 188     @Override
 189     public Class<?> getDeclaringClass() {
 190         return clazz;
 191     }
 192 
 193     /**
 194      * Returns the name of the field represented by this {@code Field} object.
 195      */
 196     public String getName() {
 197         return name;
 198     }
 199 
 200     /**
 201      * Returns the Java language modifiers for the field represented
 202      * by this {@code Field} object, as an integer. The {@code Modifier} class should
 203      * be used to decode the modifiers.
 204      *
 205      * @see Modifier
 206      * @see #accessFlags()
 207      * @jls 8.3 Field Declarations
 208      * @jls 9.3 Field (Constant) Declarations
 209      */
 210     public int getModifiers() {
 211         return modifiers;
 212     }
 213 
 214     /**
 215      * {@return an unmodifiable set of the {@linkplain AccessFlag
 216      * access flags} for this field, possibly empty}
 217      * @see #getModifiers()
 218      * @jvms 4.5 Fields
 219      * @since 20
 220      */
 221     @Override
 222     public Set<AccessFlag> accessFlags() {
 223         return AccessFlag.maskToAccessFlags(getModifiers(), AccessFlag.Location.FIELD);
 224     }
 225 
 226     /**
 227      * Returns {@code true} if this field represents an element of
 228      * an enumerated class; returns {@code false} otherwise.
 229      *
 230      * @return {@code true} if and only if this field represents an element of
 231      * an enumerated class.
 232      * @since 1.5
 233      * @jls 8.9.1 Enum Constants
 234      */
 235     public boolean isEnumConstant() {
 236         return (getModifiers() & Modifier.ENUM) != 0;
 237     }
 238 
 239     /**
 240      * Returns {@code true} if this field is a synthetic
 241      * field; returns {@code false} otherwise.
 242      *
 243      * @return true if and only if this field is a synthetic
 244      * field as defined by the Java Language Specification.
 245      * @since 1.5
 246      * @see <a
 247      * href="{@docRoot}/java.base/java/lang/reflect/package-summary.html#LanguageJvmModel">Java
 248      * programming language and JVM modeling in core reflection</a>
 249      */
 250     public boolean isSynthetic() {
 251         return Modifier.isSynthetic(getModifiers());
 252     }
 253 
 254     /**
 255      * Returns a {@code Class} object that identifies the
 256      * declared type for the field represented by this
 257      * {@code Field} object.
 258      *
 259      * @return a {@code Class} object identifying the declared
 260      * type of the field represented by this object
 261      */
 262     public Class<?> getType() {
 263         return type;
 264     }
 265 
 266     /**
 267      * Returns a {@code Type} object that represents the declared type for
 268      * the field represented by this {@code Field} object.
 269      *
 270      * <p>If the declared type of the field is a parameterized type,
 271      * the {@code Type} object returned must accurately reflect the
 272      * actual type arguments used in the source code.
 273      *
 274      * <p>If the type of the underlying field is a type variable or a
 275      * parameterized type, it is created. Otherwise, it is resolved.
 276      *
 277      * @return a {@code Type} object that represents the declared type for
 278      *     the field represented by this {@code Field} object
 279      * @throws GenericSignatureFormatError if the generic field
 280      *     signature does not conform to the format specified in
 281      *     <cite>The Java Virtual Machine Specification</cite>
 282      * @throws TypeNotPresentException if the generic type
 283      *     signature of the underlying field refers to a non-existent
 284      *     class or interface declaration
 285      * @throws MalformedParameterizedTypeException if the generic
 286      *     signature of the underlying field refers to a parameterized type
 287      *     that cannot be instantiated for any reason
 288      * @since 1.5
 289      */
 290     public Type getGenericType() {
 291         if (getGenericSignature() != null)
 292             return getGenericInfo().getGenericType();
 293         else
 294             return getType();
 295     }
 296 
 297 
 298     /**
 299      * Compares this {@code Field} against the specified object.  Returns
 300      * true if the objects are the same.  Two {@code Field} objects are the same if
 301      * they were declared by the same class and have the same name
 302      * and type.
 303      */
 304     public boolean equals(Object obj) {
 305         if (obj instanceof Field other) {
 306             return (getDeclaringClass() == other.getDeclaringClass())
 307                 && (getName() == other.getName())
 308                 && (getType() == other.getType());
 309         }
 310         return false;
 311     }
 312 
 313     /**
 314      * Returns a hashcode for this {@code Field}.  This is computed as the
 315      * exclusive-or of the hashcodes for the underlying field's
 316      * declaring class name and its name.
 317      */
 318     public int hashCode() {
 319         return getDeclaringClass().getName().hashCode() ^ getName().hashCode();
 320     }
 321 
 322     /**
 323      * Returns a string describing this {@code Field}.  The format is
 324      * the access modifiers for the field, if any, followed
 325      * by the field type, followed by a space, followed by
 326      * the fully-qualified name of the class declaring the field,
 327      * followed by a period, followed by the name of the field.
 328      * For example:
 329      * <pre>
 330      *    public static final int java.lang.Thread.MIN_PRIORITY
 331      *    private int java.io.FileDescriptor.fd
 332      * </pre>
 333      *
 334      * <p>The modifiers are placed in canonical order as specified by
 335      * "The Java Language Specification".  This is {@code public},
 336      * {@code protected} or {@code private} first, and then other
 337      * modifiers in the following order: {@code static}, {@code final},
 338      * {@code transient}, {@code volatile}.
 339      *
 340      * @return a string describing this {@code Field}
 341      * @jls 8.3.1 Field Modifiers
 342      */
 343     public String toString() {
 344         int mod = getModifiers();
 345         return (((mod == 0) ? "" : (Modifier.toString(mod) + " "))
 346             + getType().getTypeName() + " "
 347             + getDeclaringClass().getTypeName() + "."
 348             + getName());
 349     }
 350 
 351     @Override
 352     String toShortString() {
 353         return "field " + getDeclaringClass().getTypeName() + "." + getName();
 354     }
 355 
 356     /**
 357      * Returns a string describing this {@code Field}, including
 358      * its generic type.  The format is the access modifiers for the
 359      * field, if any, followed by the generic field type, followed by
 360      * a space, followed by the fully-qualified name of the class
 361      * declaring the field, followed by a period, followed by the name
 362      * of the field.
 363      *
 364      * <p>The modifiers are placed in canonical order as specified by
 365      * "The Java Language Specification".  This is {@code public},
 366      * {@code protected} or {@code private} first, and then other
 367      * modifiers in the following order: {@code static}, {@code final},
 368      * {@code transient}, {@code volatile}.
 369      *
 370      * @return a string describing this {@code Field}, including
 371      * its generic type
 372      *
 373      * @since 1.5
 374      * @jls 8.3.1 Field Modifiers
 375      */
 376     public String toGenericString() {
 377         int mod = getModifiers();
 378         Type fieldType = getGenericType();
 379         return (((mod == 0) ? "" : (Modifier.toString(mod) + " "))
 380             + fieldType.getTypeName() + " "
 381             + getDeclaringClass().getTypeName() + "."
 382             + getName());
 383     }
 384 
 385     /**
 386      * Returns the value of the field represented by this {@code Field}, on
 387      * the specified object. The value is automatically wrapped in an
 388      * object if it has a primitive type.
 389      *
 390      * <p>The underlying field's value is obtained as follows:
 391      *
 392      * <p>If the underlying field is a static field, the {@code obj} argument
 393      * is ignored; it may be null.
 394      *
 395      * <p>Otherwise, the underlying field is an instance field.  If the
 396      * specified {@code obj} argument is null, the method throws a
 397      * {@code NullPointerException}. If the specified object is not an
 398      * instance of the class or interface declaring the underlying
 399      * field, the method throws an {@code IllegalArgumentException}.
 400      *
 401      * <p>If this {@code Field} object is enforcing Java language access control, and
 402      * the underlying field is inaccessible, the method throws an
 403      * {@code IllegalAccessException}.
 404      * If the underlying field is static, the class that declared the
 405      * field is initialized if it has not already been initialized.
 406      *
 407      * <p>Otherwise, the value is retrieved from the underlying instance
 408      * or static field.  If the field has a primitive type, the value
 409      * is wrapped in an object before being returned, otherwise it is
 410      * returned as is.
 411      *
 412      * <p>If the field is hidden in the type of {@code obj},
 413      * the field's value is obtained according to the preceding rules.
 414      *
 415      * @param obj object from which the represented field's value is
 416      * to be extracted
 417      * @return the value of the represented field in object
 418      * {@code obj}; primitive values are wrapped in an appropriate
 419      * object before being returned
 420      *
 421      * @throws    IllegalAccessException    if this {@code Field} object
 422      *              is enforcing Java language access control and the underlying
 423      *              field is inaccessible.
 424      * @throws    IllegalArgumentException  if the specified object is not an
 425      *              instance of the class or interface declaring the underlying
 426      *              field (or a subclass or implementor thereof).
 427      * @throws    NullPointerException      if the specified object is null
 428      *              and the field is an instance field.
 429      * @throws    ExceptionInInitializerError if the initialization provoked
 430      *              by this method fails.
 431      */
 432     @CallerSensitive
 433     @ForceInline // to ensure Reflection.getCallerClass optimization
 434     public Object get(Object obj)
 435         throws IllegalArgumentException, IllegalAccessException
 436     {
 437         if (!override) {
 438             Class<?> caller = Reflection.getCallerClass();
 439             checkAccess(caller, obj);
 440             return getFieldAccessor().get(obj);
 441         } else {
 442             return getOverrideFieldAccessor().get(obj);
 443         }
 444     }
 445 
 446     /**
 447      * Gets the value of a static or instance {@code boolean} field.
 448      *
 449      * @param obj the object to extract the {@code boolean} value
 450      * from
 451      * @return the value of the {@code boolean} field
 452      *
 453      * @throws    IllegalAccessException    if this {@code Field} object
 454      *              is enforcing Java language access control and the underlying
 455      *              field is inaccessible.
 456      * @throws    IllegalArgumentException  if the specified object is not
 457      *              an instance of the class or interface declaring the
 458      *              underlying field (or a subclass or implementor
 459      *              thereof), or if the field value cannot be
 460      *              converted to the type {@code boolean} by a
 461      *              widening conversion.
 462      * @throws    NullPointerException      if the specified object is null
 463      *              and the field is an instance field.
 464      * @throws    ExceptionInInitializerError if the initialization provoked
 465      *              by this method fails.
 466      * @see       Field#get
 467      */
 468     @CallerSensitive
 469     @ForceInline // to ensure Reflection.getCallerClass optimization
 470     public boolean getBoolean(Object obj)
 471         throws IllegalArgumentException, IllegalAccessException
 472     {
 473         if (!override) {
 474             Class<?> caller = Reflection.getCallerClass();
 475             checkAccess(caller, obj);
 476             return getFieldAccessor().getBoolean(obj);
 477         } else {
 478             return getOverrideFieldAccessor().getBoolean(obj);
 479         }
 480     }
 481 
 482     /**
 483      * Gets the value of a static or instance {@code byte} field.
 484      *
 485      * @param obj the object to extract the {@code byte} value
 486      * from
 487      * @return the value of the {@code byte} field
 488      *
 489      * @throws    IllegalAccessException    if this {@code Field} object
 490      *              is enforcing Java language access control and the underlying
 491      *              field is inaccessible.
 492      * @throws    IllegalArgumentException  if the specified object is not
 493      *              an instance of the class or interface declaring the
 494      *              underlying field (or a subclass or implementor
 495      *              thereof), or if the field value cannot be
 496      *              converted to the type {@code byte} by a
 497      *              widening conversion.
 498      * @throws    NullPointerException      if the specified object is null
 499      *              and the field is an instance field.
 500      * @throws    ExceptionInInitializerError if the initialization provoked
 501      *              by this method fails.
 502      * @see       Field#get
 503      */
 504     @CallerSensitive
 505     @ForceInline // to ensure Reflection.getCallerClass optimization
 506     public byte getByte(Object obj)
 507         throws IllegalArgumentException, IllegalAccessException
 508     {
 509         if (!override) {
 510             Class<?> caller = Reflection.getCallerClass();
 511             checkAccess(caller, obj);
 512             return getFieldAccessor().getByte(obj);
 513         } else {
 514             return getOverrideFieldAccessor().getByte(obj);
 515         }
 516     }
 517 
 518     /**
 519      * Gets the value of a static or instance field of type
 520      * {@code char} or of another primitive type convertible to
 521      * type {@code char} via a widening conversion.
 522      *
 523      * @param obj the object to extract the {@code char} value
 524      * from
 525      * @return the value of the field converted to type {@code char}
 526      *
 527      * @throws    IllegalAccessException    if this {@code Field} object
 528      *              is enforcing Java language access control and the underlying
 529      *              field is inaccessible.
 530      * @throws    IllegalArgumentException  if the specified object is not
 531      *              an instance of the class or interface declaring the
 532      *              underlying field (or a subclass or implementor
 533      *              thereof), or if the field value cannot be
 534      *              converted to the type {@code char} by a
 535      *              widening conversion.
 536      * @throws    NullPointerException      if the specified object is null
 537      *              and the field is an instance field.
 538      * @throws    ExceptionInInitializerError if the initialization provoked
 539      *              by this method fails.
 540      * @see Field#get
 541      */
 542     @CallerSensitive
 543     @ForceInline // to ensure Reflection.getCallerClass optimization
 544     public char getChar(Object obj)
 545         throws IllegalArgumentException, IllegalAccessException
 546     {
 547         if (!override) {
 548             Class<?> caller = Reflection.getCallerClass();
 549             checkAccess(caller, obj);
 550             return getFieldAccessor().getChar(obj);
 551         } else {
 552             return getOverrideFieldAccessor().getChar(obj);
 553         }
 554     }
 555 
 556     /**
 557      * Gets the value of a static or instance field of type
 558      * {@code short} or of another primitive type convertible to
 559      * type {@code short} via a widening conversion.
 560      *
 561      * @param obj the object to extract the {@code short} value
 562      * from
 563      * @return the value of the field converted to type {@code short}
 564      *
 565      * @throws    IllegalAccessException    if this {@code Field} object
 566      *              is enforcing Java language access control and the underlying
 567      *              field is inaccessible.
 568      * @throws    IllegalArgumentException  if the specified object is not
 569      *              an instance of the class or interface declaring the
 570      *              underlying field (or a subclass or implementor
 571      *              thereof), or if the field value cannot be
 572      *              converted to the type {@code short} by a
 573      *              widening conversion.
 574      * @throws    NullPointerException      if the specified object is null
 575      *              and the field is an instance field.
 576      * @throws    ExceptionInInitializerError if the initialization provoked
 577      *              by this method fails.
 578      * @see       Field#get
 579      */
 580     @CallerSensitive
 581     @ForceInline // to ensure Reflection.getCallerClass optimization
 582     public short getShort(Object obj)
 583         throws IllegalArgumentException, IllegalAccessException
 584     {
 585         if (!override) {
 586             Class<?> caller = Reflection.getCallerClass();
 587             checkAccess(caller, obj);
 588             return getFieldAccessor().getShort(obj);
 589         } else {
 590             return getOverrideFieldAccessor().getShort(obj);
 591         }
 592     }
 593 
 594     /**
 595      * Gets the value of a static or instance field of type
 596      * {@code int} or of another primitive type convertible to
 597      * type {@code int} via a widening conversion.
 598      *
 599      * @param obj the object to extract the {@code int} value
 600      * from
 601      * @return the value of the field converted to type {@code int}
 602      *
 603      * @throws    IllegalAccessException    if this {@code Field} object
 604      *              is enforcing Java language access control and the underlying
 605      *              field is inaccessible.
 606      * @throws    IllegalArgumentException  if the specified object is not
 607      *              an instance of the class or interface declaring the
 608      *              underlying field (or a subclass or implementor
 609      *              thereof), or if the field value cannot be
 610      *              converted to the type {@code int} by a
 611      *              widening conversion.
 612      * @throws    NullPointerException      if the specified object is null
 613      *              and the field is an instance field.
 614      * @throws    ExceptionInInitializerError if the initialization provoked
 615      *              by this method fails.
 616      * @see       Field#get
 617      */
 618     @CallerSensitive
 619     @ForceInline // to ensure Reflection.getCallerClass optimization
 620     public int getInt(Object obj)
 621         throws IllegalArgumentException, IllegalAccessException
 622     {
 623         if (!override) {
 624             Class<?> caller = Reflection.getCallerClass();
 625             checkAccess(caller, obj);
 626             return getFieldAccessor().getInt(obj);
 627         } else {
 628             return getOverrideFieldAccessor().getInt(obj);
 629         }
 630     }
 631 
 632     /**
 633      * Gets the value of a static or instance field of type
 634      * {@code long} or of another primitive type convertible to
 635      * type {@code long} via a widening conversion.
 636      *
 637      * @param obj the object to extract the {@code long} value
 638      * from
 639      * @return the value of the field converted to type {@code long}
 640      *
 641      * @throws    IllegalAccessException    if this {@code Field} object
 642      *              is enforcing Java language access control and the underlying
 643      *              field is inaccessible.
 644      * @throws    IllegalArgumentException  if the specified object is not
 645      *              an instance of the class or interface declaring the
 646      *              underlying field (or a subclass or implementor
 647      *              thereof), or if the field value cannot be
 648      *              converted to the type {@code long} by a
 649      *              widening conversion.
 650      * @throws    NullPointerException      if the specified object is null
 651      *              and the field is an instance field.
 652      * @throws    ExceptionInInitializerError if the initialization provoked
 653      *              by this method fails.
 654      * @see       Field#get
 655      */
 656     @CallerSensitive
 657     @ForceInline // to ensure Reflection.getCallerClass optimization
 658     public long getLong(Object obj)
 659         throws IllegalArgumentException, IllegalAccessException
 660     {
 661         if (!override) {
 662             Class<?> caller = Reflection.getCallerClass();
 663             checkAccess(caller, obj);
 664             return getFieldAccessor().getLong(obj);
 665         } else {
 666             return getOverrideFieldAccessor().getLong(obj);
 667         }
 668     }
 669 
 670     /**
 671      * Gets the value of a static or instance field of type
 672      * {@code float} or of another primitive type convertible to
 673      * type {@code float} via a widening conversion.
 674      *
 675      * @param obj the object to extract the {@code float} value
 676      * from
 677      * @return the value of the field converted to type {@code float}
 678      *
 679      * @throws    IllegalAccessException    if this {@code Field} object
 680      *              is enforcing Java language access control and the underlying
 681      *              field is inaccessible.
 682      * @throws    IllegalArgumentException  if the specified object is not
 683      *              an instance of the class or interface declaring the
 684      *              underlying field (or a subclass or implementor
 685      *              thereof), or if the field value cannot be
 686      *              converted to the type {@code float} by a
 687      *              widening conversion.
 688      * @throws    NullPointerException      if the specified object is null
 689      *              and the field is an instance field.
 690      * @throws    ExceptionInInitializerError if the initialization provoked
 691      *              by this method fails.
 692      * @see Field#get
 693      */
 694     @CallerSensitive
 695     @ForceInline // to ensure Reflection.getCallerClass optimization
 696     public float getFloat(Object obj)
 697         throws IllegalArgumentException, IllegalAccessException
 698     {
 699         if (!override) {
 700             Class<?> caller = Reflection.getCallerClass();
 701             checkAccess(caller, obj);
 702             return getFieldAccessor().getFloat(obj);
 703         } else {
 704             return getOverrideFieldAccessor().getFloat(obj);
 705         }
 706     }
 707 
 708     /**
 709      * Gets the value of a static or instance field of type
 710      * {@code double} or of another primitive type convertible to
 711      * type {@code double} via a widening conversion.
 712      *
 713      * @param obj the object to extract the {@code double} value
 714      * from
 715      * @return the value of the field converted to type {@code double}
 716      *
 717      * @throws    IllegalAccessException    if this {@code Field} object
 718      *              is enforcing Java language access control and the underlying
 719      *              field is inaccessible.
 720      * @throws    IllegalArgumentException  if the specified object is not
 721      *              an instance of the class or interface declaring the
 722      *              underlying field (or a subclass or implementor
 723      *              thereof), or if the field value cannot be
 724      *              converted to the type {@code double} by a
 725      *              widening conversion.
 726      * @throws    NullPointerException      if the specified object is null
 727      *              and the field is an instance field.
 728      * @throws    ExceptionInInitializerError if the initialization provoked
 729      *              by this method fails.
 730      * @see       Field#get
 731      */
 732     @CallerSensitive
 733     @ForceInline // to ensure Reflection.getCallerClass optimization
 734     public double getDouble(Object obj)
 735         throws IllegalArgumentException, IllegalAccessException
 736     {
 737         if (!override) {
 738             Class<?> caller = Reflection.getCallerClass();
 739             checkAccess(caller, obj);
 740             return getFieldAccessor().getDouble(obj);
 741         } else {
 742             return getOverrideFieldAccessor().getDouble(obj);
 743         }
 744     }
 745 
 746     /**
 747      * Sets the field represented by this {@code Field} object on the
 748      * specified object argument to the specified new value. The new
 749      * value is automatically unwrapped if the underlying field has a
 750      * primitive type.
 751      *
 752      * <p>The operation proceeds as follows:
 753      *
 754      * <p>If the underlying field is static, the {@code obj} argument is
 755      * ignored; it may be null.
 756      *
 757      * <p>Otherwise the underlying field is an instance field.  If the
 758      * specified object argument is null, the method throws a
 759      * {@code NullPointerException}.  If the specified object argument is not
 760      * an instance of the class or interface declaring the underlying
 761      * field, the method throws an {@code IllegalArgumentException}.
 762      *
 763      * <p>If this {@code Field} object is enforcing Java language access control, and
 764      * the underlying field is inaccessible, the method throws an
 765      * {@code IllegalAccessException}.
 766      *
 767      * <p>If the underlying field is final, this {@code Field} object has
 768      * <em>write</em> access if and only if the following conditions are met:
 769      * <ul>
 770      * <li>{@link #setAccessible(boolean) setAccessible(true)} has succeeded for
 771      *     this {@code Field} object;</li>
 772      * <li>the field is non-static; and</li>
 773      * <li>the field's declaring class is not a {@linkplain Class#isHidden()
 774      *     hidden class}; and</li>
 775      * <li>the field's declaring class is not a {@linkplain Class#isRecord()
 776      *     record class}.</li>
 777      * </ul>
 778      * If any of the above checks is not met, this method throws an
 779      * {@code IllegalAccessException}.
 780      *
 781      * <p> Setting a final field in this way
 782      * is meaningful only during deserialization or reconstruction of
 783      * instances of classes with blank final fields, before they are
 784      * made available for access by other parts of a program. Use in
 785      * any other context may have unpredictable effects, including cases
 786      * in which other parts of a program continue to use the original
 787      * value of this field.
 788      *
 789      * <p>If the underlying field is of a primitive type, an unwrapping
 790      * conversion is attempted to convert the new value to a value of
 791      * a primitive type.  If this attempt fails, the method throws an
 792      * {@code IllegalArgumentException}.
 793      *
 794      * <p>If, after possible unwrapping, the new value cannot be
 795      * converted to the type of the underlying field by an identity or
 796      * widening conversion, the method throws an
 797      * {@code IllegalArgumentException}.
 798      *
 799      * <p>If the underlying field is static, the class that declared the
 800      * field is initialized if it has not already been initialized.
 801      *
 802      * <p>The field is set to the possibly unwrapped and widened new value.
 803      *
 804      * <p>If the field is hidden in the type of {@code obj},
 805      * the field's value is set according to the preceding rules.
 806      *
 807      * @param obj the object whose field should be modified
 808      * @param value the new value for the field of {@code obj}
 809      * being modified
 810      *
 811      * @throws    IllegalAccessException    if this {@code Field} object
 812      *              is enforcing Java language access control and the underlying
 813      *              field is inaccessible or final;
 814      *              or if this {@code Field} object has no write access.
 815      * @throws    IllegalArgumentException  if the specified object is not an
 816      *              instance of the class or interface declaring the underlying
 817      *              field (or a subclass or implementor thereof),
 818      *              or if an unwrapping conversion fails.
 819      * @throws    NullPointerException      if the specified object is null
 820      *              and the field is an instance field.
 821      * @throws    ExceptionInInitializerError if the initialization provoked
 822      *              by this method fails.
 823      */
 824     @CallerSensitive
 825     @ForceInline // to ensure Reflection.getCallerClass optimization
 826     public void set(Object obj, Object value)
 827         throws IllegalArgumentException, IllegalAccessException
 828     {
 829         if (!override) {
 830             Class<?> caller = Reflection.getCallerClass();
 831             checkAccess(caller, obj);
 832             getFieldAccessor().set(obj, value);
 833         } else {
 834             getOverrideFieldAccessor().set(obj, value);
 835         }
 836     }
 837 
 838     /**
 839      * Sets the value of a field as a {@code boolean} on the specified object.
 840      * This method is equivalent to
 841      * {@code set(obj, zObj)},
 842      * where {@code zObj} is a {@code Boolean} object and
 843      * {@code zObj.booleanValue() == z}.
 844      *
 845      * @param obj the object whose field should be modified
 846      * @param z   the new value for the field of {@code obj}
 847      * being modified
 848      *
 849      * @throws    IllegalAccessException    if this {@code Field} object
 850      *              is enforcing Java language access control and the underlying
 851      *              field is either inaccessible or final;
 852      *              or if this {@code Field} object has no write access.
 853      * @throws    IllegalArgumentException  if the specified object is not an
 854      *              instance of the class or interface declaring the underlying
 855      *              field (or a subclass or implementor thereof),
 856      *              or if an unwrapping conversion fails.
 857      * @throws    NullPointerException      if the specified object is null
 858      *              and the field is an instance field.
 859      * @throws    ExceptionInInitializerError if the initialization provoked
 860      *              by this method fails.
 861      * @see       Field#set
 862      */
 863     @CallerSensitive
 864     @ForceInline // to ensure Reflection.getCallerClass optimization
 865     public void setBoolean(Object obj, boolean z)
 866         throws IllegalArgumentException, IllegalAccessException
 867     {
 868         if (!override) {
 869             Class<?> caller = Reflection.getCallerClass();
 870             checkAccess(caller, obj);
 871             getFieldAccessor().setBoolean(obj, z);
 872         } else {
 873             getOverrideFieldAccessor().setBoolean(obj, z);
 874         }
 875     }
 876 
 877     /**
 878      * Sets the value of a field as a {@code byte} on the specified object.
 879      * This method is equivalent to
 880      * {@code set(obj, bObj)},
 881      * where {@code bObj} is a {@code Byte} object and
 882      * {@code bObj.byteValue() == b}.
 883      *
 884      * @param obj the object whose field should be modified
 885      * @param b   the new value for the field of {@code obj}
 886      * being modified
 887      *
 888      * @throws    IllegalAccessException    if this {@code Field} object
 889      *              is enforcing Java language access control and the underlying
 890      *              field is either inaccessible or final;
 891      *              or if this {@code Field} object has no write access.
 892      * @throws    IllegalArgumentException  if the specified object is not an
 893      *              instance of the class or interface declaring the underlying
 894      *              field (or a subclass or implementor thereof),
 895      *              or if an unwrapping conversion fails.
 896      * @throws    NullPointerException      if the specified object is null
 897      *              and the field is an instance field.
 898      * @throws    ExceptionInInitializerError if the initialization provoked
 899      *              by this method fails.
 900      * @see       Field#set
 901      */
 902     @CallerSensitive
 903     @ForceInline // to ensure Reflection.getCallerClass optimization
 904     public void setByte(Object obj, byte b)
 905         throws IllegalArgumentException, IllegalAccessException
 906     {
 907         if (!override) {
 908             Class<?> caller = Reflection.getCallerClass();
 909             checkAccess(caller, obj);
 910             getFieldAccessor().setByte(obj, b);
 911         } else {
 912             getOverrideFieldAccessor().setByte(obj, b);
 913         }
 914     }
 915 
 916     /**
 917      * Sets the value of a field as a {@code char} on the specified object.
 918      * This method is equivalent to
 919      * {@code set(obj, cObj)},
 920      * where {@code cObj} is a {@code Character} object and
 921      * {@code cObj.charValue() == c}.
 922      *
 923      * @param obj the object whose field should be modified
 924      * @param c   the new value for the field of {@code obj}
 925      * being modified
 926      *
 927      * @throws    IllegalAccessException    if this {@code Field} object
 928      *              is enforcing Java language access control and the underlying
 929      *              field is either inaccessible or final;
 930      *              or if this {@code Field} object has no write access.
 931      * @throws    IllegalArgumentException  if the specified object is not an
 932      *              instance of the class or interface declaring the underlying
 933      *              field (or a subclass or implementor thereof),
 934      *              or if an unwrapping conversion fails.
 935      * @throws    NullPointerException      if the specified object is null
 936      *              and the field is an instance field.
 937      * @throws    ExceptionInInitializerError if the initialization provoked
 938      *              by this method fails.
 939      * @see       Field#set
 940      */
 941     @CallerSensitive
 942     @ForceInline // to ensure Reflection.getCallerClass optimization
 943     public void setChar(Object obj, char c)
 944         throws IllegalArgumentException, IllegalAccessException
 945     {
 946         if (!override) {
 947             Class<?> caller = Reflection.getCallerClass();
 948             checkAccess(caller, obj);
 949             getFieldAccessor().setChar(obj, c);
 950         } else {
 951             getOverrideFieldAccessor().setChar(obj, c);
 952         }
 953     }
 954 
 955     /**
 956      * Sets the value of a field as a {@code short} on the specified object.
 957      * This method is equivalent to
 958      * {@code set(obj, sObj)},
 959      * where {@code sObj} is a {@code Short} object and
 960      * {@code sObj.shortValue() == s}.
 961      *
 962      * @param obj the object whose field should be modified
 963      * @param s   the new value for the field of {@code obj}
 964      * being modified
 965      *
 966      * @throws    IllegalAccessException    if this {@code Field} object
 967      *              is enforcing Java language access control and the underlying
 968      *              field is either inaccessible or final;
 969      *              or if this {@code Field} object has no write access.
 970      * @throws    IllegalArgumentException  if the specified object is not an
 971      *              instance of the class or interface declaring the underlying
 972      *              field (or a subclass or implementor thereof),
 973      *              or if an unwrapping conversion fails.
 974      * @throws    NullPointerException      if the specified object is null
 975      *              and the field is an instance field.
 976      * @throws    ExceptionInInitializerError if the initialization provoked
 977      *              by this method fails.
 978      * @see       Field#set
 979      */
 980     @CallerSensitive
 981     @ForceInline // to ensure Reflection.getCallerClass optimization
 982     public void setShort(Object obj, short s)
 983         throws IllegalArgumentException, IllegalAccessException
 984     {
 985         if (!override) {
 986             Class<?> caller = Reflection.getCallerClass();
 987             checkAccess(caller, obj);
 988             getFieldAccessor().setShort(obj, s);
 989         } else {
 990             getOverrideFieldAccessor().setShort(obj, s);
 991         }
 992     }
 993 
 994     /**
 995      * Sets the value of a field as an {@code int} on the specified object.
 996      * This method is equivalent to
 997      * {@code set(obj, iObj)},
 998      * where {@code iObj} is an {@code Integer} object and
 999      * {@code iObj.intValue() == i}.
1000      *
1001      * @param obj the object whose field should be modified
1002      * @param i   the new value for the field of {@code obj}
1003      * being modified
1004      *
1005      * @throws    IllegalAccessException    if this {@code Field} object
1006      *              is enforcing Java language access control and the underlying
1007      *              field is either inaccessible or final;
1008      *              or if this {@code Field} object has no write access.
1009      * @throws    IllegalArgumentException  if the specified object is not an
1010      *              instance of the class or interface declaring the underlying
1011      *              field (or a subclass or implementor thereof),
1012      *              or if an unwrapping conversion fails.
1013      * @throws    NullPointerException      if the specified object is null
1014      *              and the field is an instance field.
1015      * @throws    ExceptionInInitializerError if the initialization provoked
1016      *              by this method fails.
1017      * @see       Field#set
1018      */
1019     @CallerSensitive
1020     @ForceInline // to ensure Reflection.getCallerClass optimization
1021     public void setInt(Object obj, int i)
1022         throws IllegalArgumentException, IllegalAccessException
1023     {
1024         if (!override) {
1025             Class<?> caller = Reflection.getCallerClass();
1026             checkAccess(caller, obj);
1027             getFieldAccessor().setInt(obj, i);
1028         } else {
1029             getOverrideFieldAccessor().setInt(obj, i);
1030         }
1031     }
1032 
1033     /**
1034      * Sets the value of a field as a {@code long} on the specified object.
1035      * This method is equivalent to
1036      * {@code set(obj, lObj)},
1037      * where {@code lObj} is a {@code Long} object and
1038      * {@code lObj.longValue() == l}.
1039      *
1040      * @param obj the object whose field should be modified
1041      * @param l   the new value for the field of {@code obj}
1042      * being modified
1043      *
1044      * @throws    IllegalAccessException    if this {@code Field} object
1045      *              is enforcing Java language access control and the underlying
1046      *              field is either inaccessible or final;
1047      *              or if this {@code Field} object has no write access.
1048      * @throws    IllegalArgumentException  if the specified object is not an
1049      *              instance of the class or interface declaring the underlying
1050      *              field (or a subclass or implementor thereof),
1051      *              or if an unwrapping conversion fails.
1052      * @throws    NullPointerException      if the specified object is null
1053      *              and the field is an instance field.
1054      * @throws    ExceptionInInitializerError if the initialization provoked
1055      *              by this method fails.
1056      * @see       Field#set
1057      */
1058     @CallerSensitive
1059     @ForceInline // to ensure Reflection.getCallerClass optimization
1060     public void setLong(Object obj, long l)
1061         throws IllegalArgumentException, IllegalAccessException
1062     {
1063         if (!override) {
1064             Class<?> caller = Reflection.getCallerClass();
1065             checkAccess(caller, obj);
1066             getFieldAccessor().setLong(obj, l);
1067         } else {
1068             getOverrideFieldAccessor().setLong(obj, l);
1069         }
1070     }
1071 
1072     /**
1073      * Sets the value of a field as a {@code float} on the specified object.
1074      * This method is equivalent to
1075      * {@code set(obj, fObj)},
1076      * where {@code fObj} is a {@code Float} object and
1077      * {@code fObj.floatValue() == f}.
1078      *
1079      * @param obj the object whose field should be modified
1080      * @param f   the new value for the field of {@code obj}
1081      * being modified
1082      *
1083      * @throws    IllegalAccessException    if this {@code Field} object
1084      *              is enforcing Java language access control and the underlying
1085      *              field is either inaccessible or final;
1086      *              or if this {@code Field} object has no write access.
1087      * @throws    IllegalArgumentException  if the specified object is not an
1088      *              instance of the class or interface declaring the underlying
1089      *              field (or a subclass or implementor thereof),
1090      *              or if an unwrapping conversion fails.
1091      * @throws    NullPointerException      if the specified object is null
1092      *              and the field is an instance field.
1093      * @throws    ExceptionInInitializerError if the initialization provoked
1094      *              by this method fails.
1095      * @see       Field#set
1096      */
1097     @CallerSensitive
1098     @ForceInline // to ensure Reflection.getCallerClass optimization
1099     public void setFloat(Object obj, float f)
1100         throws IllegalArgumentException, IllegalAccessException
1101     {
1102         if (!override) {
1103             Class<?> caller = Reflection.getCallerClass();
1104             checkAccess(caller, obj);
1105             getFieldAccessor().setFloat(obj, f);
1106         } else {
1107             getOverrideFieldAccessor().setFloat(obj, f);
1108         }
1109     }
1110 
1111     /**
1112      * Sets the value of a field as a {@code double} on the specified object.
1113      * This method is equivalent to
1114      * {@code set(obj, dObj)},
1115      * where {@code dObj} is a {@code Double} object and
1116      * {@code dObj.doubleValue() == d}.
1117      *
1118      * @param obj the object whose field should be modified
1119      * @param d   the new value for the field of {@code obj}
1120      * being modified
1121      *
1122      * @throws    IllegalAccessException    if this {@code Field} object
1123      *              is enforcing Java language access control and the underlying
1124      *              field is either inaccessible or final;
1125      *              or if this {@code Field} object has no write access.
1126      * @throws    IllegalArgumentException  if the specified object is not an
1127      *              instance of the class or interface declaring the underlying
1128      *              field (or a subclass or implementor thereof),
1129      *              or if an unwrapping conversion fails.
1130      * @throws    NullPointerException      if the specified object is null
1131      *              and the field is an instance field.
1132      * @throws    ExceptionInInitializerError if the initialization provoked
1133      *              by this method fails.
1134      * @see       Field#set
1135      */
1136     @CallerSensitive
1137     @ForceInline // to ensure Reflection.getCallerClass optimization
1138     public void setDouble(Object obj, double d)
1139         throws IllegalArgumentException, IllegalAccessException
1140     {
1141         if (!override) {
1142             Class<?> caller = Reflection.getCallerClass();
1143             checkAccess(caller, obj);
1144             getFieldAccessor().setDouble(obj, d);
1145         } else {
1146             getOverrideFieldAccessor().setDouble(obj, d);
1147         }
1148     }
1149 
1150     // check access to field
1151     private void checkAccess(Class<?> caller, Object obj)
1152         throws IllegalAccessException
1153     {
1154         checkAccess(caller, clazz,
1155                     Modifier.isStatic(modifiers) ? null : obj.getClass(),
1156                     modifiers);
1157     }
1158 
1159     // security check is done before calling this method
1160     private FieldAccessor getFieldAccessor() {
1161         FieldAccessor a = fieldAccessor;
1162         return (a != null) ? a : acquireFieldAccessor();
1163     }
1164 
1165     private FieldAccessor getOverrideFieldAccessor() {
1166         FieldAccessor a = overrideFieldAccessor;
1167         return (a != null) ? a : acquireOverrideFieldAccessor();
1168     }
1169 
1170     // NOTE that there is no synchronization used here. It is correct
1171     // (though not efficient) to generate more than one FieldAccessor
1172     // for a given Field. However, avoiding synchronization will
1173     // probably make the implementation more scalable.
1174     private FieldAccessor acquireFieldAccessor() {
1175         // First check to see if one has been created yet, and take it
1176         // if so
1177         Field root = this.root;
1178         FieldAccessor tmp = root == null ? null : root.fieldAccessor;
1179         if (tmp != null) {
1180             fieldAccessor = tmp;
1181         } else {
1182             // Otherwise fabricate one and propagate it up to the root
1183             tmp = reflectionFactory.newFieldAccessor(this, false);
1184             setFieldAccessor(tmp);
1185         }
1186         return tmp;
1187     }
1188 
1189     private FieldAccessor acquireOverrideFieldAccessor() {
1190         // First check to see if one has been created yet, and take it
1191         // if so
1192         Field root = this.root;
1193         FieldAccessor tmp = root == null ? null : root.overrideFieldAccessor;
1194         if (tmp != null) {
1195             overrideFieldAccessor = tmp;
1196         } else {
1197             // Otherwise fabricate one and propagate it up to the root
1198             tmp = reflectionFactory.newFieldAccessor(this, true);
1199             setOverrideFieldAccessor(tmp);
1200         }
1201         return tmp;
1202     }
1203 
1204     // Sets the fieldAccessor for this Field object and
1205     // (recursively) its root
1206     private void setFieldAccessor(FieldAccessor accessor) {
1207         fieldAccessor = accessor;
1208         // Propagate up
1209         Field root = this.root;
1210         if (root != null) {
1211             root.setFieldAccessor(accessor);
1212         }
1213     }
1214 
1215     // Sets the overrideFieldAccessor for this Field object and
1216     // (recursively) its root
1217     private void setOverrideFieldAccessor(FieldAccessor accessor) {
1218         overrideFieldAccessor = accessor;
1219         // Propagate up
1220         Field root = this.root;
1221         if (root != null) {
1222             root.setOverrideFieldAccessor(accessor);
1223         }
1224     }
1225 
1226     @Override
1227     /* package-private */ Field getRoot() {
1228         return root;
1229     }
1230 
1231     /* package-private */ boolean isTrustedFinal() {
1232         return trustedFinal;
1233     }
1234 
1235     /**
1236      * {@inheritDoc}
1237      *
1238      * @throws NullPointerException {@inheritDoc}
1239      * @since 1.5
1240      */
1241     @Override
1242     public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
1243         Objects.requireNonNull(annotationClass);
1244         return annotationClass.cast(declaredAnnotations().get(annotationClass));
1245     }
1246 
1247     /**
1248      * {@inheritDoc}
1249      *
1250      * @throws NullPointerException {@inheritDoc}
1251      * @since 1.8
1252      */
1253     @Override
1254     public <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass) {
1255         Objects.requireNonNull(annotationClass);
1256 
1257         return AnnotationSupport.getDirectlyAndIndirectlyPresent(declaredAnnotations(), annotationClass);
1258     }
1259 
1260     /**
1261      * {@inheritDoc}
1262      */
1263     @Override
1264     public Annotation[] getDeclaredAnnotations()  {
1265         return AnnotationParser.toArray(declaredAnnotations());
1266     }
1267 
1268     private transient volatile Map<Class<? extends Annotation>, Annotation> declaredAnnotations;
1269 
1270     private Map<Class<? extends Annotation>, Annotation> declaredAnnotations() {
1271         Map<Class<? extends Annotation>, Annotation> declAnnos;
1272         if ((declAnnos = declaredAnnotations) == null) {
1273             synchronized (this) {
1274                 if ((declAnnos = declaredAnnotations) == null) {
1275                     Field root = this.root;
1276                     if (root != null) {
1277                         declAnnos = root.declaredAnnotations();
1278                     } else {
1279                         declAnnos = AnnotationParser.parseAnnotations(
1280                                 annotations,
1281                                 SharedSecrets.getJavaLangAccess()
1282                                         .getConstantPool(getDeclaringClass()),
1283                                 getDeclaringClass());
1284                     }
1285                     declaredAnnotations = declAnnos;
1286                 }
1287             }
1288         }
1289         return declAnnos;
1290     }
1291 
1292     private native byte[] getTypeAnnotationBytes0();
1293 
1294     /**
1295      * Returns an AnnotatedType object that represents the use of a type to specify
1296      * the declared type of the field represented by this Field.
1297      * @return an object representing the declared type of the field
1298      * represented by this Field
1299      *
1300      * @since 1.8
1301      */
1302     public AnnotatedType getAnnotatedType() {
1303         return TypeAnnotationParser.buildAnnotatedType(getTypeAnnotationBytes0(),
1304                                                        SharedSecrets.getJavaLangAccess().
1305                                                            getConstantPool(getDeclaringClass()),
1306                                                        this,
1307                                                        getDeclaringClass(),
1308                                                        getGenericType(),
1309                                                        TypeAnnotation.TypeAnnotationTarget.FIELD);
1310 }
1311 }