Class Field
- All Implemented Interfaces:
AnnotatedElement,Member
Field provides information about, and dynamic access to, asingle field of a class or an interface. The reflected field maybe a class (static) field or an instance field.AField permits widening conversions to occur during a get orset access operation, but throws anIllegalArgumentException if anarrowing conversion would occur.
Field Summary
Method Summary
Modifier and TypeMethodDescriptionReturns an unmodifiable set of theaccess flags for this field, possibly empty.booleanCompares thisFieldagainst the specified object.Returns the value of the field represented by thisField, onthe specified object.Returns an AnnotatedType object that represents the use of a type to specifythe declared type of the field represented by this Field.<T extendsAnnotation>
TgetAnnotation(Class<T> annotationClass) Returns this element's annotation for the specified type ifsuch an annotation ispresent, else null.<T extendsAnnotation>
T[]getAnnotationsByType(Class<T> annotationClass) Returns annotations that areassociated with this element.booleangetBoolean(Object obj) Gets the value of a static or instancebooleanfield.byteGets the value of a static or instancebytefield.charGets the value of a static or instance field of typecharor of another primitive type convertible totypecharvia a widening conversion.Class<?> Returns theClassobject representing the class or interfacethat declares the field represented by thisFieldobject.doubleGets the value of a static or instance field of typedoubleor of another primitive type convertible totypedoublevia a widening conversion.floatGets the value of a static or instance field of typefloator of another primitive type convertible totypefloatvia a widening conversion.Returns aTypeobject that represents the declared type forthe field represented by thisFieldobject.intGets the value of a static or instance field of typeintor of another primitive type convertible totypeintvia a widening conversion.longGets the value of a static or instance field of typelongor of another primitive type convertible totypelongvia a widening conversion.intReturns the Java language modifiers for the field representedby thisFieldobject, as an integer.getName()Returns the name of the field represented by thisFieldobject.shortGets the value of a static or instance field of typeshortor of another primitive type convertible totypeshortvia a widening conversion.Class<?> getType()Returns aClassobject that identifies thedeclared type for the field represented by thisFieldobject.inthashCode()Returns a hashcode for thisField.booleanReturnstrueif this field represents an element ofan enumerated class; returnsfalseotherwise.booleanReturnstrueif this field is a syntheticfield; returnsfalseotherwise.voidSets the field represented by thisFieldobject on thespecified object argument to the specified new value.voidsetAccessible(boolean flag) Set theaccessibleflag for this reflected object tothe indicated boolean value.voidsetBoolean(Object obj, boolean z) Sets the value of a field as abooleanon the specified object.voidSets the value of a field as abyteon the specified object.voidSets the value of a field as acharon the specified object.voidSets the value of a field as adoubleon the specified object.voidSets the value of a field as afloaton the specified object.voidSets the value of a field as aninton the specified object.voidSets the value of a field as alongon the specified object.voidSets the value of a field as ashorton the specified object.Returns a string describing thisField, includingits generic type.toString()Returns a string describing thisField.
Method Details
setAccessible
public void setAccessible(boolean flag) Description copied from class:AccessibleObjectSet theaccessibleflag for this reflected object tothe indicated boolean value. A value oftrueindicates thatthe reflected object should suppress checks for Java language accesscontrol when it is used. A value offalseindicates thatthe reflected object should enforce checks for Java language accesscontrol when it is used, with the variation noted in the class description.This method may be used by a caller in class
Cto enableaccess to amemberofdeclaring classDif any of the following hold:CandDare in the same module.- The member is
publicandDispublicin a package that the module containingDexportsto at least the module containingC. - The member is
protectedstatic,Dispublicin a package that the module containingDexports to at least the module containingC, andCis a subclass ofD. Dis in a package that the module containingDopensto at least the module containingC. All packages in unnamed and open modules are open to all modules and so this method always succeeds whenDis in an unnamed or open module.
This method may be used byJNI codewith no caller class on the stack to enable access to a
memberofdeclaring classDif and only if:- The member is
publicandDispublicin a package that the module containingDexportsunconditionally.
This method cannot be used to enable access to private members,members with default (package) access, protected instance members, orprotected constructors when the declaring class is in a different moduleto the caller and the package containing the declaring class is not opento the caller's module.
This method cannot be used to enablewriteaccess to anon-modifiable final field. The following fieldsare non-modifiable:
- static final fields declared in any class or interface
- final fields declared in ahidden class
- final fields declared in arecord
The
accessibleflag whentruesuppresses Java language accesscontrol checks to only enableread access tothese non-modifiable final fields.- Overrides:
setAccessiblein classAccessibleObject- Parameters:
flag- the new value for theaccessibleflag- Throws:
InaccessibleObjectException- if access cannot be enabled- External Specifications
- See Also:
getDeclaringClass
Returns theClassobject representing the class or interfacethat declares the field represented by thisFieldobject.- Specified by:
getDeclaringClassin interfaceMember- Returns:
- an object representing the declaring class of theunderlying member
getName
getModifiers
public int getModifiers()Returns the Java language modifiers for the field representedby thisFieldobject, as an integer. TheModifierclass shouldbe used to decode the modifiers.- Specified by:
getModifiersin interfaceMember- Returns:
- the Java language modifiers for the underlying member
- SeeJava Language Specification:
- 8.3 Field Declarations
9.3 Field (Constant) Declarations - See Also:
accessFlags
Returns an unmodifiable set of theaccess flags for this field, possibly empty.- Specified by:
accessFlagsin interfaceMember- Returns:
- an unmodifiable set of theaccess flags for this field, possibly empty
- SeeJava Virtual Machine Specification:
- 4.5 Fields
- Since:
- 20
- See Also:
isEnumConstant
public boolean isEnumConstant()Returnstrueif this field represents an element ofan enumerated class; returnsfalseotherwise.- Returns:
trueif and only if this field represents an element ofan enumerated class.- SeeJava Language Specification:
- 8.9.1 Enum Constants
- Since:
- 1.5
isSynthetic
public boolean isSynthetic()Returnstrueif this field is a syntheticfield; returnsfalseotherwise.- Specified by:
isSyntheticin interfaceMember- Returns:
- true if and only if this field is a syntheticfield as defined by the Java Language Specification.
- Since:
- 1.5
- See Also:
getType
Returns aClassobject that identifies thedeclared type for the field represented by thisFieldobject.- Returns:
- a
Classobject identifying the declaredtype of the field represented by this object
getGenericType
Returns aTypeobject that represents the declared type forthe field represented by thisFieldobject.If the declared type of the field is a parameterized type,the
Typeobject returned must accurately reflect theactual type arguments used in the source code.If the type of the underlying field is a type variable or aparameterized type, it is created. Otherwise, it is resolved.
- Returns:
- a
Typeobject that represents the declared type for the field represented by thisFieldobject - Throws:
GenericSignatureFormatError- if the generic field signature does not conform to the format specified inThe Java Virtual Machine SpecificationTypeNotPresentException- if the generic type signature of the underlying field refers to a non-existent class or interface declarationMalformedParameterizedTypeException- if the generic signature of the underlying field refers to a parameterized type that cannot be instantiated for any reason- Since:
- 1.5
equals
Compares thisFieldagainst the specified object. Returnstrue if the objects are the same. TwoFieldobjects are the same ifthey were declared by the same class and have the same nameand type.hashCode
toString
Returns a string describing thisField. The format isthe access modifiers for the field, if any, followedby the field type, followed by a space, followed bythe fully-qualified name of the class declaring the field,followed by a period, followed by the name of the field.For example:public static final int java.lang.Thread.MIN_PRIORITY private int java.io.FileDescriptor.fd
The modifiers are placed in canonical order as specified by"The Java Language Specification". This is
public,protectedorprivatefirst, and then othermodifiers in the following order:static,final,transient,volatile.- Overrides:
toStringin classObject- Returns:
- a string describing this
Field - SeeJava Language Specification:
- 8.3.1 Field Modifiers
toGenericString
Returns a string describing thisField, includingits generic type. The format is the access modifiers for thefield, if any, followed by the generic field type, followed bya space, followed by the fully-qualified name of the classdeclaring the field, followed by a period, followed by the nameof the field.The modifiers are placed in canonical order as specified by"The Java Language Specification". This is
public,protectedorprivatefirst, and then othermodifiers in the following order:static,final,transient,volatile.- Returns:
- a string describing this
Field, includingits generic type - SeeJava Language Specification:
- 8.3.1 Field Modifiers
- Since:
- 1.5
get
Returns the value of the field represented by thisField, onthe specified object. The value is automatically wrapped in anobject if it has a primitive type.The underlying field's value is obtained as follows:
If the underlying field is a static field, the
objargumentis ignored; it may be null.Otherwise, the underlying field is an instance field. If thespecified
objargument is null, the method throws aNullPointerException. If the specified object is not aninstance of the class or interface declaring the underlyingfield, the method throws anIllegalArgumentException.If this
Fieldobject is enforcing Java language access control, andthe underlying field is inaccessible, the method throws anIllegalAccessException.If the underlying field is static, the class that declared thefield is initialized if it has not already been initialized.Otherwise, the value is retrieved from the underlying instanceor static field. If the field has a primitive type, the valueis wrapped in an object before being returned, otherwise it isreturned as is.
If the field is hidden in the type of
obj,the field's value is obtained according to the preceding rules.- Parameters:
obj- object from which the represented field's value isto be extracted- Returns:
- the value of the represented field in object
obj; primitive values are wrapped in an appropriateobject before being returned - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof).NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.
getBoolean
Gets the value of a static or instancebooleanfield.- Parameters:
obj- the object to extract thebooleanvaluefrom- Returns:
- the value of the
booleanfield - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typebooleanby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getByte
Gets the value of a static or instancebytefield.- Parameters:
obj- the object to extract thebytevaluefrom- Returns:
- the value of the
bytefield - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typebyteby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getChar
Gets the value of a static or instance field of typecharor of another primitive type convertible totypecharvia a widening conversion.- Parameters:
obj- the object to extract thecharvaluefrom- Returns:
- the value of the field converted to type
char - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typecharby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getShort
Gets the value of a static or instance field of typeshortor of another primitive type convertible totypeshortvia a widening conversion.- Parameters:
obj- the object to extract theshortvaluefrom- Returns:
- the value of the field converted to type
short - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typeshortby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getInt
Gets the value of a static or instance field of typeintor of another primitive type convertible totypeintvia a widening conversion.- Parameters:
obj- the object to extract theintvaluefrom- Returns:
- the value of the field converted to type
int - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typeintby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getLong
Gets the value of a static or instance field of typelongor of another primitive type convertible totypelongvia a widening conversion.- Parameters:
obj- the object to extract thelongvaluefrom- Returns:
- the value of the field converted to type
long - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typelongby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getFloat
Gets the value of a static or instance field of typefloator of another primitive type convertible totypefloatvia a widening conversion.- Parameters:
obj- the object to extract thefloatvaluefrom- Returns:
- the value of the field converted to type
float - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typefloatby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getDouble
Gets the value of a static or instance field of typedoubleor of another primitive type convertible totypedoublevia a widening conversion.- Parameters:
obj- the object to extract thedoublevaluefrom- Returns:
- the value of the field converted to type
double - Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if the field value cannot be converted to the typedoubleby a widening conversion.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
set
Sets the field represented by thisFieldobject on thespecified object argument to the specified new value. The newvalue is automatically unwrapped if the underlying field has aprimitive type.The operation proceeds as follows:
If the underlying field is static, the
objargument isignored; it may be null.Otherwise the underlying field is an instance field. If thespecified object argument is null, the method throws a
NullPointerException. If the specified object argument is notan instance of the class or interface declaring the underlyingfield, the method throws anIllegalArgumentException.If this
Fieldobject is enforcing Java language access control, andthe underlying field is inaccessible, the method throws anIllegalAccessException.If the underlying field is final, this
Fieldobject haswrite access if and only if the following conditions are met:setAccessible(true)has succeeded for thisFieldobject;- the field is non-static; and
- the field's declaring class is not ahidden class; and
- the field's declaring class is not arecord class.
IllegalAccessException.Setting a final field in this wayis meaningful only during deserialization or reconstruction ofinstances of classes with blank final fields, before they aremade available for access by other parts of a program. Use inany other context may have unpredictable effects, including casesin which other parts of a program continue to use the originalvalue of this field.
If the underlying field is of a primitive type, an unwrappingconversion is attempted to convert the new value to a value ofa primitive type. If this attempt fails, the method throws an
IllegalArgumentException.If, after possible unwrapping, the new value cannot beconverted to the type of the underlying field by an identity orwidening conversion, the method throws an
IllegalArgumentException.If the underlying field is static, the class that declared thefield is initialized if it has not already been initialized.
The field is set to the possibly unwrapped and widened new value.
If the field is hidden in the type of
obj,the field's value is set according to the preceding rules.- Parameters:
obj- the object whose field should be modifiedvalue- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.
setBoolean
Sets the value of a field as abooleanon the specified object.This method is equivalent toset(obj, zObj),wherezObjis aBooleanobject andzObj.booleanValue() == z.- Parameters:
obj- the object whose field should be modifiedz- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setByte
Sets the value of a field as abyteon the specified object.This method is equivalent toset(obj, bObj),wherebObjis aByteobject andbObj.byteValue() == b.- Parameters:
obj- the object whose field should be modifiedb- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setChar
Sets the value of a field as acharon the specified object.This method is equivalent toset(obj, cObj),wherecObjis aCharacterobject andcObj.charValue() == c.- Parameters:
obj- the object whose field should be modifiedc- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setShort
Sets the value of a field as ashorton the specified object.This method is equivalent toset(obj, sObj),wheresObjis aShortobject andsObj.shortValue() == s.- Parameters:
obj- the object whose field should be modifieds- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setInt
Sets the value of a field as aninton the specified object.This method is equivalent toset(obj, iObj),whereiObjis anIntegerobject andiObj.intValue() == i.- Parameters:
obj- the object whose field should be modifiedi- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setLong
Sets the value of a field as alongon the specified object.This method is equivalent toset(obj, lObj),wherelObjis aLongobject andlObj.longValue() == l.- Parameters:
obj- the object whose field should be modifiedl- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setFloat
Sets the value of a field as afloaton the specified object.This method is equivalent toset(obj, fObj),wherefObjis aFloatobject andfObj.floatValue() == f.- Parameters:
obj- the object whose field should be modifiedf- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
setDouble
Sets the value of a field as adoubleon the specified object.This method is equivalent toset(obj, dObj),wheredObjis aDoubleobject anddObj.doubleValue() == d.- Parameters:
obj- the object whose field should be modifiedd- the new value for the field ofobjbeing modified- Throws:
IllegalAccessException- if thisFieldobject is enforcing Java language access control and the underlying field is either inaccessible or final; or if thisFieldobject has no write access.IllegalArgumentException- if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementor thereof), or if an unwrapping conversion fails.NullPointerException- if the specified object is null and the field is an instance field.ExceptionInInitializerError- if the initialization provoked by this method fails.- See Also:
getAnnotation
Returns this element's annotation for the specified type ifsuch an annotation ispresent, else null.Note that any annotation returned by this method is adeclaration annotation.
- Specified by:
getAnnotationin interfaceAnnotatedElement- Overrides:
getAnnotationin classAccessibleObject- Type Parameters:
T- the type of the annotation to query for and return if present- Parameters:
annotationClass- the Class object corresponding to the annotation type- Returns:
- this element's annotation for the specified annotation type if present on this element, else null
- Throws:
NullPointerException- if the given annotation class is null- Since:
- 1.5
getAnnotationsByType
Returns annotations that areassociated with this element.If there are no annotationsassociated with this element, the returnvalue is an array of length 0.The difference between this method andAnnotatedElement.getAnnotation(Class)is that this method detects if its argument is arepeatableannotation type (JLS9.6), and if so, attempts to find one ormore annotations of that type by "looking through" a containerannotation.The caller of this method is free to modify the returned array; it willhave no effect on the arrays returned to other callers.Note that any annotations returned by this method aredeclaration annotations.
- Specified by:
getAnnotationsByTypein interfaceAnnotatedElement- Overrides:
getAnnotationsByTypein classAccessibleObject- Type Parameters:
T- the type of the annotation to query for and return if present- Parameters:
annotationClass- the Class object corresponding to the annotation type- Returns:
- all this element's annotations for the specified annotation type if associated with this element, else an array of length zero
- Throws:
NullPointerException- if the given annotation class is null- Since:
- 1.8
getAnnotatedType
Returns an AnnotatedType object that represents the use of a type to specifythe declared type of the field represented by this Field.- Returns:
- an object representing the declared type of the fieldrepresented by this Field
- Since:
- 1.8