public static enum DelegatingDebugConfig.Feature extends Enum<DelegatingDebugConfig.Feature>
| Enum Constant and Description |
|---|
DUMP_METHOD |
INTERCEPT |
LOG_METHOD |
METER |
TIME |
TRACK_MEM_USE |
VERIFY |
VERIFY_METHOD |
| Modifier and Type | Method and Description |
|---|---|
static DelegatingDebugConfig.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegatingDebugConfig.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegatingDebugConfig.Feature LOG_METHOD
Debug.isLogEnabledForMethod()public static final DelegatingDebugConfig.Feature DUMP_METHOD
Debug.isDumpEnabledForMethod()public static final DelegatingDebugConfig.Feature VERIFY
Debug.isVerifyEnabled()public static final DelegatingDebugConfig.Feature VERIFY_METHOD
Debug.isVerifyEnabledForMethod()public static final DelegatingDebugConfig.Feature METER
Debug.isMeterEnabled()public static final DelegatingDebugConfig.Feature TRACK_MEM_USE
Debug.isMemUseTrackingEnabled()public static final DelegatingDebugConfig.Feature TIME
Debug.isTimeEnabled()public static final DelegatingDebugConfig.Feature INTERCEPT
public static DelegatingDebugConfig.Feature[] values()
for (DelegatingDebugConfig.Feature c : DelegatingDebugConfig.Feature.values()) System.out.println(c);
public static DelegatingDebugConfig.Feature 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 null