Package org.openmuc.j60870.ie
Enum IeRegulatingStepCommand.StepCommandState
- java.lang.Object
-
- java.lang.Enum<IeRegulatingStepCommand.StepCommandState>
-
- org.openmuc.j60870.ie.IeRegulatingStepCommand.StepCommandState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IeRegulatingStepCommand.StepCommandState>
- Enclosing class:
- IeRegulatingStepCommand
public static enum IeRegulatingStepCommand.StepCommandState extends java.lang.Enum<IeRegulatingStepCommand.StepCommandState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEXT_STEP_HIGHER
NEXT_STEP_LOWER
NOT_PERMITTED_A
NOT_PERMITTED_B
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
Returns the ID of this StepCommandState.static IeRegulatingStepCommand.StepCommandState
getInstance(int id)
Returns the StepCommandState that corresponds to the given ID.static IeRegulatingStepCommand.StepCommandState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IeRegulatingStepCommand.StepCommandState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_PERMITTED_A
public static final IeRegulatingStepCommand.StepCommandState NOT_PERMITTED_A
-
NEXT_STEP_LOWER
public static final IeRegulatingStepCommand.StepCommandState NEXT_STEP_LOWER
-
NEXT_STEP_HIGHER
public static final IeRegulatingStepCommand.StepCommandState NEXT_STEP_HIGHER
-
NOT_PERMITTED_B
public static final IeRegulatingStepCommand.StepCommandState NOT_PERMITTED_B
-
-
Method Detail
-
values
public static IeRegulatingStepCommand.StepCommandState[] 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 (IeRegulatingStepCommand.StepCommandState c : IeRegulatingStepCommand.StepCommandState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IeRegulatingStepCommand.StepCommandState 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
-
getId
public int getId()
Returns the ID of this StepCommandState.- Returns:
- the ID
-
getInstance
public static IeRegulatingStepCommand.StepCommandState getInstance(int id)
Returns the StepCommandState that corresponds to the given ID. Returnsnull
if no StepCommandState with the given ID exists.- Parameters:
id
- the ID- Returns:
- the StepCommandState that corresponds to the given ID
-
-