| Enum Constant and Description |
|---|
ASCENDED_EVENT |
BUILDING_KILL |
CAPTURE_POINT |
CHAMPION_KILL |
ELITE_MONSTER_KILL |
ITEM_DESTROYED |
ITEM_PURCHASED |
ITEM_SOLD |
ITEM_UNDO |
PORO_KING_SUMMON |
SKILL_LEVEL_UP |
WARD_KILL |
WARD_PLACED |
| Modifier and Type | Method and Description |
|---|---|
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType ASCENDED_EVENT
public static final EventType BUILDING_KILL
public static final EventType CAPTURE_POINT
public static final EventType CHAMPION_KILL
public static final EventType ELITE_MONSTER_KILL
public static final EventType ITEM_DESTROYED
public static final EventType ITEM_PURCHASED
public static final EventType ITEM_SOLD
public static final EventType ITEM_UNDO
public static final EventType PORO_KING_SUMMON
public static final EventType SKILL_LEVEL_UP
public static final EventType WARD_KILL
public static final EventType WARD_PLACED
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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