Package | Description |
---|---|
com.badlogic.gdx.utils.reflect |
Modifier and Type | Method and Description |
---|---|
static Field |
ClassReflection.getDeclaredField(java.lang.Class c,
java.lang.String name)
Returns a
Field that represents the specified declared field for the supplied class. |
static Field[] |
ClassReflection.getDeclaredFields(java.lang.Class c)
Returns an array of
Field objects reflecting all the fields declared by the supplied class. |
static Field |
ClassReflection.getField(java.lang.Class c,
java.lang.String name)
Returns a
Field that represents the specified public member field for the supplied class. |
static Field[] |
ClassReflection.getFields(java.lang.Class c)
Returns an array of
Field containing the public fields of the class represented by the supplied Class. |