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