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