public static enum ClassDescriptor.GetPriority extends java.lang.Enum<ClassDescriptor.GetPriority>
| Enum Constant and Description |
|---|
BuiltInMethod
Built-in method priority.
|
Field
Field priority.
|
GenericGetter
Generic getter priority.
|
GetMethod
Get method priority.
|
Index
Index priority.
|
Method
Method priority.
|
Polyfill
Polyfill priority.
|
SetMethod
Set method priority.
|
| Modifier and Type | Method and Description |
|---|---|
static ClassDescriptor.GetPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassDescriptor.GetPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassDescriptor.GetPriority BuiltInMethod
public static final ClassDescriptor.GetPriority Field
public static final ClassDescriptor.GetPriority GetMethod
public static final ClassDescriptor.GetPriority GenericGetter
public static final ClassDescriptor.GetPriority Index
public static final ClassDescriptor.GetPriority Method
public static final ClassDescriptor.GetPriority Polyfill
public static final ClassDescriptor.GetPriority SetMethod
public static ClassDescriptor.GetPriority[] values()
for (ClassDescriptor.GetPriority c : ClassDescriptor.GetPriority.values()) System.out.println(c);
public static ClassDescriptor.GetPriority 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