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