public enum ElaboratedDataFaultEnum extends java.lang.Enum<ElaboratedDataFaultEnum>
Java class for ElaboratedDataFaultEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ElaboratedDataFaultEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="intermittentDataValues"/>
<enumeration value="noDataValuesAvailable"/>
<enumeration value="spuriousUnreliableDataValues"/>
<enumeration value="unspecifiedOrUnknownFault"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INTERMITTENT_DATA_VALUES
Data values are being produced at intermittent intervals which are not consitent with the expected reporting interval.
|
NO_DATA_VALUES_AVAILABLE
No elaborated data values are currently available.
|
OTHER
Other than as defined in this enumeration.
|
SPURIOUS_UNRELIABLE_DATA_VALUES
Spurious or unreliable data values are being produced.
|
UNSPECIFIED_OR_UNKNOWN_FAULT
An unspecified or unknown fault exists in the process which is generating elaborated data.
|
| Modifier and Type | Method and Description |
|---|---|
static ElaboratedDataFaultEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ElaboratedDataFaultEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElaboratedDataFaultEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElaboratedDataFaultEnum INTERMITTENT_DATA_VALUES
public static final ElaboratedDataFaultEnum NO_DATA_VALUES_AVAILABLE
public static final ElaboratedDataFaultEnum SPURIOUS_UNRELIABLE_DATA_VALUES
public static final ElaboratedDataFaultEnum UNSPECIFIED_OR_UNKNOWN_FAULT
public static final ElaboratedDataFaultEnum OTHER
public static ElaboratedDataFaultEnum[] values()
for (ElaboratedDataFaultEnum c : ElaboratedDataFaultEnum.values()) System.out.println(c);
public static ElaboratedDataFaultEnum 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 nullpublic java.lang.String value()
public static ElaboratedDataFaultEnum fromValue(java.lang.String v)