Package velox.api.layer1.messages
Enum Layer1ApiSoundAlertMessage.SoundAlertStatus
java.lang.Object
java.lang.Enum<Layer1ApiSoundAlertMessage.SoundAlertStatus>
velox.api.layer1.messages.Layer1ApiSoundAlertMessage.SoundAlertStatus
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Layer1ApiSoundAlertMessage.SoundAlertStatus>,java.lang.constant.Constable
- Enclosing class:
- Layer1ApiSoundAlertMessage
public static enum Layer1ApiSoundAlertMessage.SoundAlertStatus extends java.lang.Enum<Layer1ApiSoundAlertMessage.SoundAlertStatus>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AWAITING_REPEATRepeated alert is waiting for delay to finishDONEDone playingPENDINGIn queue, waiting it's turnPLAYINGStarted playingPOPUP_CLOSEDUI popup has been closed -
Method Summary
Modifier and Type Method Description static Layer1ApiSoundAlertMessage.SoundAlertStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Layer1ApiSoundAlertMessage.SoundAlertStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PENDING
In queue, waiting it's turn -
AWAITING_REPEAT
Repeated alert is waiting for delay to finish -
PLAYING
Started playing -
DONE
Done playing -
POPUP_CLOSED
UI popup has been closed
-
-
Method Details
-
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
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-