public enum EventClass extends java.lang.Enum<EventClass>
Modifier and Type | Method | Description |
---|---|---|
int |
getClassNumber() |
|
static java.util.Optional<EventClass> |
instance(int classNumber) |
|
static EventClass |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EventClass[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventClass NONE
public static final EventClass CLASS_0
public static final EventClass CLASS_1
public static final EventClass CLASS_2
public static final EventClass CLASS_3
public static EventClass[] values()
for (EventClass c : EventClass.values()) System.out.println(c);
public static EventClass 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 static java.util.Optional<EventClass> instance(int classNumber)
public int getClassNumber()