public static enum Logger.MessageLevel extends java.lang.Enum<Logger.MessageLevel>
Enum Constant and Description |
---|
DEBUG
All DEBUG messages are omitted in the release version.
|
ERROR
Error message level, for error information during ruintime.
|
NORMAL
Normal message level, for information during runtime
|
TEST
All TEST messages are omitted in the release version.
|
WARNING
Warning message level, for warning messages during runtime
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLongName() |
java.lang.String |
getShortName() |
static Logger.MessageLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Logger.MessageLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logger.MessageLevel NORMAL
public static final Logger.MessageLevel WARNING
public static final Logger.MessageLevel ERROR
public static final Logger.MessageLevel TEST
public static final Logger.MessageLevel DEBUG
public static Logger.MessageLevel[] values()
for (Logger.MessageLevel c : Logger.MessageLevel.values()) System.out.println(c);
public static Logger.MessageLevel 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 java.lang.String getShortName()
public java.lang.String getLongName()