public enum ApplicationLogEntryLevel extends java.lang.Enum<ApplicationLogEntryLevel>
| Enum Constant and Description |
|---|
ERROR
There were some errors during the execution of the application, but those errors
do not prevent the rest of the application to work correctly.
|
FATAL
There were some errors during the execution of the application, and those errors
should be investigated.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationLogEntryLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationLogEntryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationLogEntryLevel FATAL
public static final ApplicationLogEntryLevel ERROR
public static ApplicationLogEntryLevel[] values()
for (ApplicationLogEntryLevel c : ApplicationLogEntryLevel.values()) System.out.println(c);
public static ApplicationLogEntryLevel 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