public static enum ShufflingParticipant.State extends java.lang.Enum<ShufflingParticipant.State>
Enum Constant and Description |
---|
CANCELLED |
PROCESSED |
REGISTERED |
VERIFIED |
Modifier and Type | Method and Description |
---|---|
boolean |
canBecome(ShufflingParticipant.State nextState) |
byte |
getCode() |
static ShufflingParticipant.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShufflingParticipant.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShufflingParticipant.State REGISTERED
public static final ShufflingParticipant.State PROCESSED
public static final ShufflingParticipant.State VERIFIED
public static final ShufflingParticipant.State CANCELLED
public static ShufflingParticipant.State[] values()
for (ShufflingParticipant.State c : ShufflingParticipant.State.values()) System.out.println(c);
public static ShufflingParticipant.State 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 byte getCode()
public boolean canBecome(ShufflingParticipant.State nextState)