public enum GameSubType extends java.lang.Enum<GameSubType>
| Enum Constant and Description |
|---|
ARAM_UNRANKED_5x5 |
ASCENSION |
BILGEWATER |
BOT |
BOT_3x3 |
CAP_5x5 |
COUNTER_PICK |
FIRSTBLOOD_1x1 |
FIRSTBLOOD_2x2 |
HEXAKILL |
KING_PORO |
NIGHTMARE_BOT |
NONE |
NORMAL |
NORMAL_3x3 |
ODIN_UNRANKED |
ONEFORALL_5x5 |
RANKED_PREMADE_3x3 |
RANKED_PREMADE_5x5 |
RANKED_SOLO_5x5 |
RANKED_TEAM_3x3 |
RANKED_TEAM_5x5 |
SR_6x6 |
URF |
URF_BOT |
| Modifier and Type | Method and Description |
|---|---|
static GameSubType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameSubType NONE
public static final GameSubType NORMAL
public static final GameSubType BOT
public static final GameSubType RANKED_SOLO_5x5
public static final GameSubType RANKED_PREMADE_3x3
public static final GameSubType RANKED_PREMADE_5x5
public static final GameSubType ODIN_UNRANKED
public static final GameSubType RANKED_TEAM_3x3
public static final GameSubType RANKED_TEAM_5x5
public static final GameSubType NORMAL_3x3
public static final GameSubType BOT_3x3
public static final GameSubType CAP_5x5
public static final GameSubType ARAM_UNRANKED_5x5
public static final GameSubType ONEFORALL_5x5
public static final GameSubType FIRSTBLOOD_1x1
public static final GameSubType FIRSTBLOOD_2x2
public static final GameSubType SR_6x6
public static final GameSubType URF
public static final GameSubType URF_BOT
public static final GameSubType NIGHTMARE_BOT
public static final GameSubType ASCENSION
public static final GameSubType HEXAKILL
public static final GameSubType KING_PORO
public static final GameSubType COUNTER_PICK
public static final GameSubType BILGEWATER
public static GameSubType[] values()
for (GameSubType c : GameSubType.values()) System.out.println(c);
public static GameSubType 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