| Enum Constant and Description |
|---|
_INVALID |
LOGCRITICAL
Termination is recommended, and/or the error has financial
consequences.
|
LOGDEBUG
Verbose output for debugging (compiled only in debug build).
|
LOGERROR
Error that requires human attention.
|
LOGINFO
Helpful information.
|
LOGMESSAGE
Contents of a message object.
|
LOGNONE
No Logging
|
LOGTRACE
Output for tracking problems in release (compiled in both
builds).
|
LOGWARN
Something could potentially go wrong, but recoverable.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static LogLevel |
get(byte value) |
static java.util.Collection<LogLevel> |
validValues() |
static LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogLevel LOGNONE
public static final LogLevel LOGCRITICAL
public static final LogLevel LOGERROR
public static final LogLevel LOGWARN
public static final LogLevel LOGINFO
public static final LogLevel LOGMESSAGE
public static final LogLevel LOGTRACE
public static final LogLevel LOGDEBUG
public static final LogLevel _INVALID
public static LogLevel[] values()
for (LogLevel c : LogLevel.values()) System.out.println(c);
public static 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 nullpublic byte get()
public static LogLevel get(byte value)
public static java.util.Collection<LogLevel> validValues()