public enum GamePadDeadZone extends java.lang.Enum<GamePadDeadZone>
Enum Constant and Description |
---|
Circular
The combined X and Y position of each stick is compared against the dead zone.
|
IndependantAxes
The X and Y positions of each stick are compared against the dead zone independently.
|
None
The values of each stick are not processed and are returned by GamePad.GetState as "raw" values.
|
Modifier and Type | Method and Description |
---|---|
static GamePadDeadZone |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GamePadDeadZone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GamePadDeadZone None
public static final GamePadDeadZone IndependantAxes
public static final GamePadDeadZone Circular
public static GamePadDeadZone[] values()
for (GamePadDeadZone c : GamePadDeadZone.values()) System.out.println(c);
public static GamePadDeadZone 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