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