Enum StepControlModel.OperationModeEnum
- java.lang.Object
-
- java.lang.Enum<StepControlModel.OperationModeEnum>
-
- org.bidib.wizard.mvc.stepcontrol.model.StepControlModel.OperationModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<StepControlModel.OperationModeEnum>
- Enclosing class:
- StepControlModel
public static enum StepControlModel.OperationModeEnum extends Enum<StepControlModel.OperationModeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description emergencyStophomingInProgressoperationalunknown
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StepControlModel.OperationModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static StepControlModel.OperationModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
unknown
public static final StepControlModel.OperationModeEnum unknown
-
operational
public static final StepControlModel.OperationModeEnum operational
-
emergencyStop
public static final StepControlModel.OperationModeEnum emergencyStop
-
homingInProgress
public static final StepControlModel.OperationModeEnum homingInProgress
-
-
Method Detail
-
values
public static StepControlModel.OperationModeEnum[] 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 (StepControlModel.OperationModeEnum c : StepControlModel.OperationModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepControlModel.OperationModeEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-