public enum TraceMode extends Enum<TraceMode>
TraceHandler.getTraceModes(java.lang.String)| Enum Constant and Description |
|---|
OFF
Indicates feature is off, regardless of user Trace annotation
|
ON
Indicates feature is on, regardless of user Trace annotation
|
USER
Indicates feature is on or off depending on existence of user Trace annotation
|
| Modifier and Type | Method and Description |
|---|---|
static TraceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceMode ON
public static final TraceMode OFF
public static final TraceMode USER
public static TraceMode[] values()
for (TraceMode c : TraceMode.values()) System.out.println(c);
public static TraceMode 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 © 2006–2015 Cojen. All rights reserved.