Enum Class CyclingApplicationMaster.Status
java.lang.Object
java.lang.Enum<CyclingApplicationMaster.Status>
org.scictrl.csshell.epics.server.application.cycling.CyclingApplicationMaster.Status
- All Implemented Interfaces:
Serializable
,Comparable<CyclingApplicationMaster.Status>
,Constable
- Enclosing class:
CyclingApplicationMaster
Enum definition of cycling master status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCycling master has been aborted by user.Cycling master stopped because of connection fail.Cycling master is busy cycling.Cycling master stopped because of general failure.Cycling master reports mixed state of subordinate cyclers.Cycling master is idle and ready for operation. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CyclingApplicationMaster.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
READY
Cycling master is idle and ready for operation. -
CYCLING
Cycling master is busy cycling. -
ABORT
Cycling master has been aborted by user. -
CONN_FAIL
Cycling master stopped because of connection fail. -
ERROR
Cycling master stopped because of general failure. -
MISC
Cycling master reports mixed state of subordinate cyclers.
-
-
Field Details
-
LABELS
Labels fro states.
-
-
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
-