is new.
java.lang.Objectjava.lang.reflect.AccessibleObject
java.lang.reflect.Field
AnnotatedElement
,
Member
A Field provides information about, and dynamic access to, a single field of a class or an interface. The reflected field may be a class (static) field or an instance field.
A Field permits widening conversions to occur during a get or set access operation, but throws an IllegalArgumentException if a narrowing conversion would occur.
| Field Summary |
|---|
| Fields inherited from interface java.lang.reflect. Member |
|---|
| DECLARED , PUBLIC |
| Method Summary | ||
|---|---|---|
| boolean |
equals
(
Object
obj) Compares this Field against the specified object. |
|
| Object |
get
(
Object
obj) Returns the value of the field represented by this Field, on the specified object. |
|
|
getAnnotation
(
Class
<T> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null.
|
|
| boolean |
getBoolean
(
Object
obj) Gets the value of a static or instance boolean field. |
|
| byte |
getByte
(
Object
obj) Gets the value of a static or instance byte field. |
|
| char |
getChar
(
Object
obj) Gets the value of a static or instance field of type char or of another primitive type convertible to type char via a widening conversion. |
|
java.lang.annotation.Annotation[]
|
getDeclaredAnnotations
()
Returns all annotations that are directly present on this element.
|
|
| Class |
getDeclaringClass
() Returns the Class object representing the class or interface that declares the field represented by this Field object. |
|
| double |
getDouble
(
Object
obj) Gets the value of a static or instance field of type double or of another primitive type convertible to type double via a widening conversion. |
|
| float |
getFloat
(
Object
obj) Gets the value of a static or instance field of type float or of another primitive type convertible to type float via a widening conversion. |
|
Type
|
getGenericType
()
Returns a
Type
object that represents the declared type for the field represented by this
Field
object.
|
|
| int |
getInt
(
Object
obj) Gets the value of a static or instance field of type int or of another primitive type convertible to type int via a widening conversion. |
|
| long |
getLong
(
Object
obj) Gets the value of a static or instance field of type long or of another primitive type convertible to type long via a widening conversion. |
|
| int |
getModifiers
() Returns the Java language modifiers for the field represented by this Field object, as an integer. |
|
| String |
getName
() Returns the name of the field represented by this Field object. |
|
| short |
getShort
(
Object
obj) Gets the value of a static or instance field of type short or of another primitive type convertible to type short via a widening conversion. |
|
| Class |
getType
() Returns a Class object that identifies the declared type for the field represented by this Field object. |
|
| int |
hashCode
() Returns a hashcode for this Field. |
|
boolean
|
isEnumConstant
()
Returns
true
if this field represents an element of an enumerated type; returns
false
otherwise.
|
|
boolean
|
isSynthetic
()
Returns
true
if this field is a synthetic field; returns
false
otherwise.
|
|
| void |
set
(
Object
obj,
Object
value) Sets the field represented by this Field object on the specified object argument to the specified new value. |
|
| void |
setBoolean
(
Object
obj, boolean z) Sets the value of a field as a boolean on the specified object. |
|
| void |
setByte
(
Object
obj, byte b) Sets the value of a field as a byte on the specified object. |
|
| void |
setChar
(
Object
obj, char c) Sets the value of a field as a char on the specified object. |
|
| void |
setDouble
(
Object
obj, double d) Sets the value of a field as a double on the specified object. |
|
| void |
setFloat
(
Object
obj, float f) Sets the value of a field as a float on the specified object. |
|
| void |
setInt
(
Object
obj, int i) Sets the value of a field as an int on the specified object. |
|
| void |
setLong
(
Object
obj, long l) Sets the value of a field as a long on the specified object. |
|
| void |
setShort
(
Object
obj, short s) Sets the value of a field as a short on the specified object. |
|
| String |
toString
() Returns a string describing this Field. |
|
| Methods inherited from class java.lang.reflect. AccessibleObject |
|---|
getAnnotations
,
isAccessible
,
isAnnotationPresent
,
setAccessible
,
setAccessible
|
| Methods inherited from class java.lang. Object |
|---|
| clone , finalize , getClass , notify , notifyAll , wait , wait , wait |
| Method Detail |
|---|
public Class getDeclaringClass()
public String getName()
public int getModifiers()
isEnumConstant
public boolean
isEnumConstant
()
Returns
true
if this field represents an element of an enumerated type; returns
false
otherwise.
Returns:
true
if and only if this field represents an element of an enumerated type.
Since:
1.5
isSynthetic
public boolean
isSynthetic
()
Returns
true
if this field is a synthetic field; returns
false
otherwise.
Specified by:
isSynthetic
in interface
Member
Returns:
true if and only if this field is a synthetic field as defined by the Java Language Specification.
Since:
1.5
public Class getType()
getGenericType
public
Type
getGenericType
()
Returns a
Type
object that represents the declared type for the field represented by this
Field
object.
If the
Type
is a parameterized type, the
Type
object returned must accurately reflect the actual type parameters used in the source code.
If an the type of the underlying field is a type variable or a parameterized type, it is created. Otherwise, it is resolved.
Returns:
a
Type
object that represents the declared type for the field represented by this
Field
object
Throws:
GenericSignatureFormatError
- if the generic field signature does not conform to the format specified in the Java Virtual Machine Specification, 3rd edition
TypeNotPresentException
- if the generic type signature of the underlying field refers to a non-existent type declaration
MalformedParameterizedTypeException
- if the generic signature of the underlying field refers to a parameterized type that cannot be instantiated for any reason
Since:
1.5
public boolean equals(Object obj)
public int hashCode()
public String toString()
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 , protected or private first, and then other modifiers in the following order: static , final , transient , volatile .
public Object get(Object obj)
throws IllegalArgumentException,
IllegalAccessException
The underlying field's value is obtained as follows:
If the underlying field is a static field, the obj argument is ignored; it may be null.
Otherwise, the underlying field is an instance field. If the specified obj argument is null, the method throws a NullPointerException. If the specified object is not an instance of the class or interface declaring the underlying field, the method throws an IllegalArgumentException.
If this Field object enforces Java language access control, and the underlying field is inaccessible, the method throws an IllegalAccessException. If the underlying field is static, the class that declared the field is initialized if it has not already been initialized.
Otherwise, the value is retrieved from the underlying instance or static field. If the field has a primitive type, the value is wrapped in an object before being returned, otherwise it is returned as is.
If the field is hidden in the type of obj, the field's value is obtained according to the preceding rules.
public boolean getBoolean(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public byte getByte(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public char getChar(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public short getShort(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public int getInt(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public long getLong(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public float getFloat(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public double getDouble(Object obj)
throws IllegalArgumentException,
IllegalAccessException
public void set(Object obj,
Object value)
throws IllegalArgumentException,
IllegalAccessException
The operation proceeds as follows:
If the underlying field is static, the obj argument is ignored; it may be null.
Otherwise the underlying field is an instance field. If the specified object argument is null, the method throws a NullPointerException. If the specified object argument is not an instance of the class or interface declaring the underlying field, the method throws an IllegalArgumentException.
If this Field object enforces Java language access control, and the underlying field is inaccessible, the method throws an IllegalAccessException.
If the underlying field is final, the method throws an IllegalAccessException.
If the underlying field is of a primitive type, an unwrapping conversion is attempted to convert the new value to a value of a primitive type. If this attempt fails, the method throws an IllegalArgumentException.
If, after possible unwrapping, the new value cannot be converted to the type of the underlying field by an identity or widening conversion, the method throws an IllegalArgumentException.
If the underlying field is static, the class that declared the field 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.
public void setBoolean(Object obj,
boolean z)
throws IllegalArgumentException,
IllegalAccessException
public void setByte(Object obj,
byte b)
throws IllegalArgumentException,
IllegalAccessException
public void setChar(Object obj,
char c)
throws IllegalArgumentException,
IllegalAccessException
public void setShort(Object obj,
short s)
throws IllegalArgumentException,
IllegalAccessException
public void setInt(Object obj,
int i)
throws IllegalArgumentException,
IllegalAccessException
public void setLong(Object obj,
long l)
throws IllegalArgumentException,
IllegalAccessException
public void setFloat(Object obj,
float f)
throws IllegalArgumentException,
IllegalAccessException
public void setDouble(Object obj,
double d)
throws IllegalArgumentException,
IllegalAccessException
getAnnotation
public <T extends java.lang.annotation.Annotation> T
getAnnotation
(
Class
<T> annotationClass)
Description copied from interface:
AnnotatedElement
Returns this element's annotation for the specified type if such an annotation is present, else null.
Specified by:
getAnnotation
in interface
AnnotatedElement
Overrides:
getAnnotation
in class
AccessibleObject
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
getDeclaredAnnotations
public java.lang.annotation.Annotation[]
getDeclaredAnnotations
()
Description copied from interface:
AnnotatedElement
Returns all annotations that are directly present on this element. Unlike the other methods in this interface, this method ignores inherited annotations. (Returns an array of length zero if no annotations are directly present on this element.)
Specified by:
getDeclaredAnnotations
in interface
AnnotatedElement
Overrides:
getDeclaredAnnotations
in class
AccessibleObject
Returns:
All annotations directly present on this element