public enum BattleKitType extends java.lang.Enum<BattleKitType>
Enum Constant and Description |
---|
ANY |
BOT_FIGHT |
BRACKETS |
DUEL |
LMS |
NONE |
PARTY_FFA |
PARTY_QUEUE |
PARTY_SPLIT |
PARTY_VS_PARTY |
PREMIUM_QUEUE |
QUEUE |
Modifier and Type | Method and Description |
---|---|
static BattleKitType |
byName(java.lang.String t) |
static BattleKitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BattleKitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BattleKitType ANY
public static final BattleKitType DUEL
public static final BattleKitType BOT_FIGHT
public static final BattleKitType QUEUE
public static final BattleKitType PARTY_VS_PARTY
public static final BattleKitType PARTY_FFA
public static final BattleKitType PARTY_SPLIT
public static final BattleKitType PREMIUM_QUEUE
public static final BattleKitType PARTY_QUEUE
public static final BattleKitType BRACKETS
public static final BattleKitType LMS
public static final BattleKitType NONE
public static BattleKitType[] values()
for (BattleKitType c : BattleKitType.values()) System.out.println(c);
public static BattleKitType 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 static BattleKitType byName(java.lang.String t)