public enum TriggerType extends Enum<TriggerType>
| Enum Constant and Description |
|---|
ADDED |
DAMAGE |
DEAL_DAMAGE |
DEATH |
GLIDE |
INTERVAL |
JOIN |
KILL |
LAUNCH |
LEFT_CLICK |
LOCK |
REMOVED |
RIGHT_CLICK |
SNEAK |
SPAWN |
SPRINT |
STOP_GLIDE |
STOP_SNEAK |
STOP_SPRINT |
UNLOCK |
| Modifier and Type | Method and Description |
|---|---|
static TriggerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerType SPAWN
public static final TriggerType JOIN
public static final TriggerType ADDED
public static final TriggerType REMOVED
public static final TriggerType UNLOCK
public static final TriggerType LOCK
public static final TriggerType INTERVAL
public static final TriggerType DEATH
public static final TriggerType DAMAGE
public static final TriggerType LAUNCH
public static final TriggerType DEAL_DAMAGE
public static final TriggerType KILL
public static final TriggerType SNEAK
public static final TriggerType STOP_SNEAK
public static final TriggerType SPRINT
public static final TriggerType STOP_SPRINT
public static final TriggerType GLIDE
public static final TriggerType STOP_GLIDE
public static final TriggerType RIGHT_CLICK
public static final TriggerType LEFT_CLICK
public static TriggerType[] values()
for (TriggerType c : TriggerType.values()) System.out.println(c);
public static TriggerType 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 © 2021 elMakers. All rights reserved.