Enum SessionLogic.SessionStatus
- java.lang.Object
-
- java.lang.Enum<SessionLogic.SessionStatus>
-
- org.intocps.maestro.webapi.controllers.SessionLogic.SessionStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SessionLogic.SessionStatus>
- Enclosing class:
- SessionLogic
public static enum SessionLogic.SessionStatus extends java.lang.Enum<SessionLogic.SessionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ErrorFinishedInitializedSimulatingStoppingUnitialized
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionLogic.SessionStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SessionLogic.SessionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unitialized
public static final SessionLogic.SessionStatus Unitialized
-
Initialized
public static final SessionLogic.SessionStatus Initialized
-
Simulating
public static final SessionLogic.SessionStatus Simulating
-
Finished
public static final SessionLogic.SessionStatus Finished
-
Error
public static final SessionLogic.SessionStatus Error
-
Stopping
public static final SessionLogic.SessionStatus Stopping
-
-
Method Detail
-
values
public static SessionLogic.SessionStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SessionLogic.SessionStatus c : SessionLogic.SessionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SessionLogic.SessionStatus valueOf(java.lang.String name)
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
-
-