public static enum PlayerAnimationEvent.Type extends Enum<PlayerAnimationEvent.Type>
| Enum Constant and Description |
|---|
CRITICAL_HIT |
MAGIC_CRITICAL_HIT |
NO_ACTION |
ROW_LEFT |
ROW_RIGHT |
SWING_ARM |
WAKE_UP |
| Modifier and Type | Method and Description |
|---|---|
static PlayerAnimationEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayerAnimationEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerAnimationEvent.Type NO_ACTION
public static final PlayerAnimationEvent.Type SWING_ARM
public static final PlayerAnimationEvent.Type WAKE_UP
public static final PlayerAnimationEvent.Type CRITICAL_HIT
public static final PlayerAnimationEvent.Type MAGIC_CRITICAL_HIT
public static final PlayerAnimationEvent.Type ROW_RIGHT
public static final PlayerAnimationEvent.Type ROW_LEFT
public static PlayerAnimationEvent.Type[] values()
for (PlayerAnimationEvent.Type c : PlayerAnimationEvent.Type.values()) System.out.println(c);
public static PlayerAnimationEvent.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 © 2021. All rights reserved.