public static enum EneterTrace.EDetailLevel extends java.lang.Enum<EneterTrace.EDetailLevel>
| Enum Constant and Description |
|---|
Debug
All messages are traced.
|
None
Messages are not traced.
|
Short
Info, Warning and Error messages.
|
| Modifier and Type | Method and Description |
|---|---|
static EneterTrace.EDetailLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EneterTrace.EDetailLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EneterTrace.EDetailLevel None
public static final EneterTrace.EDetailLevel Short
public static final EneterTrace.EDetailLevel Debug
public static EneterTrace.EDetailLevel[] values()
for (EneterTrace.EDetailLevel c : EneterTrace.EDetailLevel.values()) System.out.println(c);
public static EneterTrace.EDetailLevel 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