Package org.openmuc.j60870.ie
Enum IeDoublePointWithQuality.DoublePointInformation
- java.lang.Object
-
- java.lang.Enum<IeDoublePointWithQuality.DoublePointInformation>
-
- org.openmuc.j60870.ie.IeDoublePointWithQuality.DoublePointInformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IeDoublePointWithQuality.DoublePointInformation>
- Enclosing class:
- IeDoublePointWithQuality
public static enum IeDoublePointWithQuality.DoublePointInformation extends java.lang.Enum<IeDoublePointWithQuality.DoublePointInformation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INDETERMINATE
INDETERMINATE_OR_INTERMEDIATE
OFF
ON
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IeDoublePointWithQuality.DoublePointInformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IeDoublePointWithQuality.DoublePointInformation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INDETERMINATE_OR_INTERMEDIATE
public static final IeDoublePointWithQuality.DoublePointInformation INDETERMINATE_OR_INTERMEDIATE
-
OFF
public static final IeDoublePointWithQuality.DoublePointInformation OFF
-
ON
public static final IeDoublePointWithQuality.DoublePointInformation ON
-
INDETERMINATE
public static final IeDoublePointWithQuality.DoublePointInformation INDETERMINATE
-
-
Method Detail
-
values
public static IeDoublePointWithQuality.DoublePointInformation[] 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 (IeDoublePointWithQuality.DoublePointInformation c : IeDoublePointWithQuality.DoublePointInformation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IeDoublePointWithQuality.DoublePointInformation 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
-
-