Package be.yildizgames.module.controller
Enum ControllerInput
- java.lang.Object
-
- java.lang.Enum<ControllerInput>
-
- be.yildizgames.module.controller.ControllerInput
-
- All Implemented Interfaces:
Serializable,Comparable<ControllerInput>
public enum ControllerInput extends Enum<ControllerInput>
Possible input on the controller.- Author:
- Grégory Van den Borre
-
-
Method Summary
Modifier and Type Method Description static ControllerInputvalueOf(String name)Returns the enum constant of this type with the specified name.static ControllerInput[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUTTON1
public static final ControllerInput BUTTON1
Button 1.
-
BUTTON2
public static final ControllerInput BUTTON2
Button 2.
-
BUTTON3
public static final ControllerInput BUTTON3
Button 3.
-
BUTTON4
public static final ControllerInput BUTTON4
Button 4.
-
START
public static final ControllerInput START
Button start.
-
SELECT
public static final ControllerInput SELECT
Button select.
-
-
Method Detail
-
values
public static ControllerInput[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ControllerInput valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-