public static enum SyntheticAccessor.AccessorType extends java.lang.Enum<SyntheticAccessor.AccessorType>
| Enum Constant and Description |
|---|
CONSTRUCTOR |
FIELD_LOAD |
FIELD_POST_INC |
FIELD_PRE_INC |
FIELD_STORE |
INVOKE |
| Modifier and Type | Method and Description |
|---|---|
static SyntheticAccessor.AccessorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyntheticAccessor.AccessorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyntheticAccessor.AccessorType INVOKE
public static final SyntheticAccessor.AccessorType FIELD_LOAD
public static final SyntheticAccessor.AccessorType FIELD_STORE
public static final SyntheticAccessor.AccessorType FIELD_POST_INC
public static final SyntheticAccessor.AccessorType FIELD_PRE_INC
public static final SyntheticAccessor.AccessorType CONSTRUCTOR
public static SyntheticAccessor.AccessorType[] values()
for (SyntheticAccessor.AccessorType c : SyntheticAccessor.AccessorType.values()) System.out.println(c);
public static SyntheticAccessor.AccessorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null