Enum Class AdvanceMode
- All Implemented Interfaces:
Serializable
,Comparable<AdvanceMode>
,Constable
For JSON values
"input"|"auto"|"auto_delay"|"signal"
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMoves to next beat after all awaits have finishedMoves to next beat after a set ms delay after all awaits have finishedMoves to next beat on keyboard or mouse inputMoves to next beat after an in game event is triggered -
Method Summary
Modifier and TypeMethodDescriptionstatic AdvanceMode
Returns the enum constant of this class with the specified name.static AdvanceMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INPUT
Moves to next beat on keyboard or mouse input -
AUTO
Moves to next beat after all awaits have finished -
AUTO_DELAY
Moves to next beat after a set ms delay after all awaits have finished -
SIGNAL
Moves to next beat after an in game event is triggered
-
-
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
-