Enum Class Position
- All Implemented Interfaces:
Serializable
,Comparable<Position>
,Constable
The different positions a character can be displayed on screen.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic Position
fromString
(String value) Maps JSON values"left"|"right"
to theirPosition
counterparts.static Position
Returns the enum constant of this class with the specified name.static Position[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEFT
Renders default image on the left side of the screen -
RIGHT
Renders flipped image on the right side of the screen
-
-
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
-
fromString
Maps JSON values"left"|"right"
to theirPosition
counterparts. Default to null because invalid options are caught in validation checker.- Parameters:
value
- - String value to be converted- Returns:
Position
value corresponding to the input string
-