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