Package com.rcll.domain
Enum MachineState
- java.lang.Object
-
- java.lang.Enum<MachineState>
-
- com.rcll.domain.MachineState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MachineState>
public enum MachineState extends java.lang.Enum<MachineState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLEBROKENDOWNIDLEPREPAREDPROCESSEDPROCESSINGREADY_AT_OUTPUTUNDEFINEDWAIT_IDLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MachineStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MachineState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READY_AT_OUTPUT
public static final MachineState READY_AT_OUTPUT
-
IDLE
public static final MachineState IDLE
-
WAIT_IDLE
public static final MachineState WAIT_IDLE
-
DOWN
public static final MachineState DOWN
-
BROKEN
public static final MachineState BROKEN
-
PREPARED
public static final MachineState PREPARED
-
PROCESSING
public static final MachineState PROCESSING
-
PROCESSED
public static final MachineState PROCESSED
-
AVAILABLE
public static final MachineState AVAILABLE
-
UNDEFINED
public static final MachineState UNDEFINED
-
-
Method Detail
-
values
public static MachineState[] 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 (MachineState c : MachineState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MachineState 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
-
-