Enum IntegrityBossState
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum IntegrityBossState extends Enum<IntegrityBossState>
-
-
Field Summary
Fields Modifier and Type Field Description private final String
name
private final Integer
ordinal
private final EnumEntries<IntegrityBossState>
entries
-
Constructor Summary
Constructors Constructor Description IntegrityBossState()
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGIN
PHASE_1
PHASE_1_END_CUTSCENE
PHASE_2
PHASE_2_END_CUTSCENE
PHASE_3_INTRO_GAP
PHASE_3_INTRO_CUTSCENE
PHASE_3
PHASE_3_END_CUTSCENE
END
-
Method Summary
Modifier and Type Method Description final IntegrityBossState
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<IntegrityBossState>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<IntegrityBossState>
getEntries()
-
-
Method Detail
-
valueOf
final IntegrityBossState valueOf(String value)
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.)
-
values
final Array<IntegrityBossState> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<IntegrityBossState> getEntries()
-
-
-
-