public static enum Event.Log.Severity extends Enum<Event.Log.Severity>
Enum Constant and Description |
---|
CRITICAL |
ERROR |
FATAL |
INFO |
WARNING |
Modifier and Type | Method and Description |
---|---|
static Event.Log.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Log.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Log.Severity INFO
public static final Event.Log.Severity WARNING
public static final Event.Log.Severity ERROR
public static final Event.Log.Severity CRITICAL
public static final Event.Log.Severity FATAL
public static Event.Log.Severity[] values()
for (Event.Log.Severity c : Event.Log.Severity.values()) System.out.println(c);
public static Event.Log.Severity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All rights reserved.