public enum TournamentState extends java.lang.Enum<TournamentState>
| Enum Constant and Description |
|---|
AWAITING_REVIEW |
CHECKED_IN |
CHECKING_IN |
COMPLETE |
GROUP_STAGES_FINALIZED |
GROUP_STAGES_UNDERWAY |
PENDING |
UNDERWAY |
| Modifier and Type | Method and Description |
|---|---|
static TournamentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TournamentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TournamentState CHECKING_IN
public static final TournamentState CHECKED_IN
public static final TournamentState PENDING
public static final TournamentState UNDERWAY
public static final TournamentState GROUP_STAGES_UNDERWAY
public static final TournamentState GROUP_STAGES_FINALIZED
public static final TournamentState AWAITING_REVIEW
public static final TournamentState COMPLETE
public static TournamentState[] values()
for (TournamentState c : TournamentState.values()) System.out.println(c);
public static TournamentState 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