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