Enum Class Gamepad.Axis
- All Implemented Interfaces:
Serializable, Comparable<Gamepad.Axis>, Constable
- Enclosing class:
Gamepad
Represents an axis on an Gamepad.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLeft trigger.Left X axis.Left Y axis.Right trigger.Right X axis.Right Y axis. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiontoString()Get the human-friendly name of the axis, matching the relevant methods.static Gamepad.AxisReturns the enum constant of this class with the specified name.static Gamepad.Axis[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEFT_X
Left X axis. -
LEFT_Y
Left Y axis. -
RIGHT_X
Right X axis. -
RIGHT_Y
Right Y axis. -
LEFT_TRIGGER
Left trigger. -
RIGHT_TRIGGER
Right trigger.
-
-
Field Details
-
value
Axis value.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
Get the human-friendly name of the axis, matching the relevant methods.Primarily used for automated unit tests.
- Overrides:
toStringin classEnum<Gamepad.Axis>- Returns:
- the human-friendly name of the axis.
-