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