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