public static enum TriggerProfile.Type extends java.lang.Enum<TriggerProfile.Type>
Enum Constant and Description |
---|
CRITICAL |
DAMAGE |
DODGE |
EVADE |
HEAL |
KILL |
MISS |
PARRY |
SLEEP |
STUN |
Modifier and Type | Method and Description |
---|---|
static TriggerProfile.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TriggerProfile.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerProfile.Type PARRY
public static final TriggerProfile.Type DODGE
public static final TriggerProfile.Type MISS
public static final TriggerProfile.Type DAMAGE
public static final TriggerProfile.Type HEAL
public static final TriggerProfile.Type CRITICAL
public static final TriggerProfile.Type KILL
public static final TriggerProfile.Type STUN
public static final TriggerProfile.Type SLEEP
public static final TriggerProfile.Type EVADE
public static TriggerProfile.Type[] values()
for (TriggerProfile.Type c : TriggerProfile.Type.values()) System.out.println(c);
public static TriggerProfile.Type 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