public static enum PlayerTeleportEvent.Cause extends java.lang.Enum<PlayerTeleportEvent.Cause>
Enum Constant and Description |
---|
Admin
An admin teleported this player
|
API
This player was teleported via API call
|
Command
Player used a teleport command
|
Modifier and Type | Method and Description |
---|---|
static PlayerTeleportEvent.Cause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlayerTeleportEvent.Cause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerTeleportEvent.Cause Command
public static final PlayerTeleportEvent.Cause Admin
public static final PlayerTeleportEvent.Cause API
public static PlayerTeleportEvent.Cause[] values()
for (PlayerTeleportEvent.Cause c : PlayerTeleportEvent.Cause.values()) System.out.println(c);
public static PlayerTeleportEvent.Cause 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