Package org.azd.enums
Enum Class TestSessionState
- All Implemented Interfaces:
Serializable
,Comparable<TestSessionState>
,Constable
State of the test session
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe session has completed.This is required for Feedback session which are declinedThe session is running.The session is still being created.The session has paused.Only used during an update to preserve the existing value. -
Method Summary
Modifier and TypeMethodDescriptionstatic TestSessionState
Returns the enum constant of this class with the specified name.static TestSessionState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMPLETED
The session has completed. -
DECLINED
This is required for Feedback session which are declined -
IN_PROGRESS
The session is running. -
NOT_STARTED
The session is still being created. -
PAUSED
The session has paused. -
UNSPECIFIED
Only used during an update to preserve the existing value.
-
-
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
-