| Methods in java.lang that return Field |
Field |
Class.getDeclaredField(String name)
Answers a Field object describing the field in the receiver
named by the argument. |
Field[] |
Class.getDeclaredFields()
Answers an array containing Field objects describing
all fields which are defined by the receiver. |
Field |
Class.getField(String name)
Answers a Field object describing the field in the receiver
named by the argument which must be visible from the current
execution context. |
Field[] |
Class.getFields()
Answers an array containing Field objects describing
all fields which are visible from the current execution
context. |