public enum BehaviourCode extends Enum<BehaviourCode>
| Enum Constant and Description |
|---|
CORRUPT_IP_PACKET |
DISARM |
FREEZE |
GLOBAL_COOLDOWN |
HEALTHFOUNTAIN |
INVINCIBLE |
RATE_LIMIT |
RW_LOCK_MOVE |
RW_LOCK_SPELL |
SILENCE |
STUN |
SUDO |
| Modifier and Type | Method and Description |
|---|---|
static BehaviourCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BehaviourCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BehaviourCode STUN
public static final BehaviourCode SUDO
public static final BehaviourCode RW_LOCK_SPELL
public static final BehaviourCode RW_LOCK_MOVE
public static final BehaviourCode INVINCIBLE
public static final BehaviourCode SILENCE
public static final BehaviourCode DISARM
public static final BehaviourCode FREEZE
public static final BehaviourCode CORRUPT_IP_PACKET
public static final BehaviourCode HEALTHFOUNTAIN
public static final BehaviourCode RATE_LIMIT
public static final BehaviourCode GLOBAL_COOLDOWN
public static BehaviourCode[] values()
for (BehaviourCode c : BehaviourCode.values()) System.out.println(c);
public static BehaviourCode 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.