public static enum EnhancedClassData.MethodType extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2018 Eclipse Foundation. All rights reserved.