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