public enum UESEventType extends java.lang.Enum<UESEventType>
Enum Constant and Description |
---|
INFO
Informational process event.
|
PROGRESS
Progress process event.
|
WARNING
Warning process event.
|
Modifier and Type | Method and Description |
---|---|
static UESEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESEventType c : UESEventType.values()) System.out.println(c);
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