Methods
| Name | Description |
|---|---|
| equals(Object) | Compares this Field against the specified object. |
| get(Object) | Returns the value of the field represented by this Field, on the specified object. |
| getBoolean(Object) | Get the value of a field as a boolean on specified object. |
| getByte(Object) | Get the value of a field as a byte on specified object. |
| getChar(Object) | Get the value of a field as a char on specified object. |
| getDeclaringClass() | Returns the Class object representing the class or interface that declares the field represented by this Field object. |
| getDouble(Object) | Get the value of a field as a double on specified object. |
| getFloat(Object) | Get the value of a field as a float on specified object. |
| getInt(Object) | Get the value of a field as a int on specified object. |
| getLong(Object) | Get the value of a field as a long on specified object. |
| getModifiers() | Returns the Java language modifiers for the field represented by this Field object, as an integer. |
| getName() | Returns the name of the field represented by this Field object. |
| getShort(Object) | Get the value of a field as a short on specified object. |
| getType() | Returns a Class object that identifies the declared type for the field represented by this Field object. |
| hashCode() | Returns a hashcode for this Field. |
| set(Object, Object) | Sets the field represented by this Field object on the specified object argument to the specified new value. |
| setBoolean(Object, boolean) | Set the value of a field as a boolean on specified object. |
| setByte(Object, byte) | Set the value of a field as a byte on specified object. |
| setChar(Object, char) | Set the value of a field as a char on specified object. |
| setDouble(Object, double) | Set the value of a field as a double on specified object. |
| setFloat(Object, float) | Set the value of a field as a float on specified object. |
| setInt(Object, int) | Set the value of a field as an int on specified object. |
| setLong(Object, long) | Set the value of a field as a long on specified object. |
| setShort(Object, short) | Set the value of a field as a short on specified object. |
| toString() | Return a string describing this Field. |