public enum RocLogLevel extends java.lang.Enum<RocLogLevel>
RocLogger.setLevel(RocLogLevel)| Enum Constant and Description |
|---|
DEBUG
Debug messages.
|
ERROR
Error messages.
|
INFO
Informational messages.
|
NONE
No messages.
|
TRACE
Debug messages (extra verbosity).
|
| Modifier and Type | Method and Description |
|---|---|
static RocLogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RocLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RocLogLevel NONE
public static final RocLogLevel ERROR
public static final RocLogLevel INFO
public static final RocLogLevel DEBUG
public static final RocLogLevel TRACE
public static RocLogLevel[] values()
for (RocLogLevel c : RocLogLevel.values()) System.out.println(c);
public static RocLogLevel 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