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