public static enum MoveAbilityPacket.Movement extends java.lang.Enum<MoveAbilityPacket.Movement>
Enum Constant and Description |
---|
FROM_PLAYER |
TO_PLAYER |
Modifier and Type | Method and Description |
---|---|
static MoveAbilityPacket.Movement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MoveAbilityPacket.Movement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveAbilityPacket.Movement TO_PLAYER
public static final MoveAbilityPacket.Movement FROM_PLAYER
public static MoveAbilityPacket.Movement[] values()
for (MoveAbilityPacket.Movement c : MoveAbilityPacket.Movement.values()) System.out.println(c);
public static MoveAbilityPacket.Movement 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