Package org.ivoa.dm.executionbroker
Enum Class SimpleExecutionSessionPhase
- All Implemented Interfaces:
Serializable,Comparable<SimpleExecutionSessionPhase>,Constable
@VoDml(id="execbroker:SimpleExecutionSessionPhase",
role=enumeration)
public enum SimpleExecutionSessionPhase
extends Enum<SimpleExecutionSessionPhase>
The Execution Session phase.
Enumeration SimpleExecutionSessionPhase :
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionValue ACCEPTED : .Value AVAILABLE : .Value CANCELLED : .Value COMPLETED : .Value EXPIRED : .Value FAILED : .Value INITIAL : .Value OFFERED : .Value PREPARING : .Value REJECTED : .Value RELEASING : .Value RUNNING : .Value WAITING : . -
Method Summary
Modifier and TypeMethodDescriptionstatic final SimpleExecutionSessionPhaseReturn the SimpleExecutionSessionPhase enum constant corresponding to the given string representation (value)final StringtoString()Return the string representation of this enum constant (value)final Stringvalue()Return the string representation of this enum constant (value)static SimpleExecutionSessionPhaseReturns the enum constant of this class with the specified name.static SimpleExecutionSessionPhase[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INITIAL
Value INITIAL : . -
OFFERED
Value OFFERED : . -
ACCEPTED
Value ACCEPTED : . -
REJECTED
Value REJECTED : . -
EXPIRED
Value EXPIRED : . -
WAITING
Value WAITING : . -
PREPARING
Value PREPARING : . -
AVAILABLE
Value AVAILABLE : . -
RUNNING
Value RUNNING : . -
RELEASING
Value RELEASING : . -
COMPLETED
Value COMPLETED : . -
FAILED
Value FAILED : . -
CANCELLED
Value CANCELLED : .
-
-
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
-
value
Return the string representation of this enum constant (value)- Returns:
- string representation of this enum constant (value)
-
toString
Return the string representation of this enum constant (value)- Overrides:
toStringin classEnum<SimpleExecutionSessionPhase>- Returns:
- string representation of this enum constant (value)
- See Also:
-
fromValue
Return the SimpleExecutionSessionPhase enum constant corresponding to the given string representation (value)- Parameters:
v- string representation (value)- Returns:
- SimpleExecutionSessionPhase enum constant
- Throws:
IllegalArgumentException- if there is no matching enum constant
-