public enum TournamentQueryState extends Enum<TournamentQueryState>
| Enum Constant and Description |
|---|
ALL |
ENDED |
IN_PROGRESS |
PENDING |
| Modifier and Type | Method and Description |
|---|---|
static TournamentQueryState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TournamentQueryState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TournamentQueryState ALL
public static final TournamentQueryState PENDING
public static final TournamentQueryState IN_PROGRESS
public static final TournamentQueryState ENDED
public static TournamentQueryState[] values()
for (TournamentQueryState c : TournamentQueryState.values()) System.out.println(c);
public static TournamentQueryState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.