public static enum DataRecord.FunctionField extends java.lang.Enum<DataRecord.FunctionField>
Enum Constant and Description |
---|
ERROR_VAL
value during error state
|
INST_VAL
instantaneous value
|
MAX_VAL
maximum value
|
MIN_VAL
minimum value
|
Modifier and Type | Method and Description |
---|---|
static DataRecord.FunctionField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataRecord.FunctionField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRecord.FunctionField INST_VAL
public static final DataRecord.FunctionField MAX_VAL
public static final DataRecord.FunctionField MIN_VAL
public static final DataRecord.FunctionField ERROR_VAL
public static DataRecord.FunctionField[] values()
for (DataRecord.FunctionField c : DataRecord.FunctionField.values()) System.out.println(c);
public static DataRecord.FunctionField valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null