public static enum EnhancedClassData.MethodType extends java.lang.Enum<EnhancedClassData.MethodType>
Enum Constant and Description |
---|
INFO_METHOD |
MONITORED_METHOD |
NORMAL_METHOD |
STATIC_INITIALIZER |
Modifier and Type | Method and Description |
---|---|
static EnhancedClassData.MethodType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnhancedClassData.MethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnhancedClassData.MethodType STATIC_INITIALIZER
public static final EnhancedClassData.MethodType INFO_METHOD
public static final EnhancedClassData.MethodType NORMAL_METHOD
public static final EnhancedClassData.MethodType MONITORED_METHOD
public static EnhancedClassData.MethodType[] values()
for (EnhancedClassData.MethodType c : EnhancedClassData.MethodType.values()) System.out.println(c);
public static EnhancedClassData.MethodType 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