public static enum Event.Type extends Enum<Event.Type>
| Enum Constant and Description |
|---|
ASCENDED_EVENT |
BUILDING_KILL |
CAPTURE_POINT |
CHAMPION_KILL |
ELITE_MONSTER_KILL |
ITEM_DESTROYED |
ITEM_PURCHASED |
ITEM_SOLD |
ITEM_UNDO |
SKILL_LEVEL_UP |
WARD_KILL |
WARD_PLACED |
| Modifier and Type | Method and Description |
|---|---|
static Event.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Type ASCENDED_EVENT
public static final Event.Type BUILDING_KILL
public static final Event.Type CAPTURE_POINT
public static final Event.Type CHAMPION_KILL
public static final Event.Type ELITE_MONSTER_KILL
public static final Event.Type ITEM_DESTROYED
public static final Event.Type ITEM_PURCHASED
public static final Event.Type ITEM_SOLD
public static final Event.Type ITEM_UNDO
public static final Event.Type SKILL_LEVEL_UP
public static final Event.Type WARD_KILL
public static final Event.Type WARD_PLACED
public static Event.Type[] values()
for (Event.Type c : Event.Type.values()) System.out.println(c);
public static Event.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.