public static enum Shuffling.Event extends java.lang.Enum<Shuffling.Event>
Enum Constant and Description |
---|
SHUFFLING_BLAME_STARTED |
SHUFFLING_CANCELLED |
SHUFFLING_CREATED |
SHUFFLING_DONE |
SHUFFLING_PROCESSING_ASSIGNED |
SHUFFLING_PROCESSING_FINISHED |
Modifier and Type | Method and Description |
---|---|
static Shuffling.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Shuffling.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Shuffling.Event SHUFFLING_CREATED
public static final Shuffling.Event SHUFFLING_PROCESSING_ASSIGNED
public static final Shuffling.Event SHUFFLING_PROCESSING_FINISHED
public static final Shuffling.Event SHUFFLING_BLAME_STARTED
public static final Shuffling.Event SHUFFLING_CANCELLED
public static final Shuffling.Event SHUFFLING_DONE
public static Shuffling.Event[] values()
for (Shuffling.Event c : Shuffling.Event.values()) System.out.println(c);
public static Shuffling.Event 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