net.eduvax.util
public static enum Event.ELevel extends java.lang.Enum<Event.ELevel>
Enum Constant and Description |
---|
DEBUG |
ERROR |
INFO |
INFO1 |
INFO2 |
WARNING |
Modifier and Type | Method and Description |
---|---|
static Event.ELevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Event.ELevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.ELevel DEBUG
public static final Event.ELevel INFO2
public static final Event.ELevel INFO1
public static final Event.ELevel INFO
public static final Event.ELevel WARNING
public static final Event.ELevel ERROR
public static Event.ELevel[] values()
for (Event.ELevel c : Event.ELevel.values()) System.out.println(c);
public static Event.ELevel 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