public enum FaultSeverityEnum extends java.lang.Enum<FaultSeverityEnum>
Java class for FaultSeverityEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FaultSeverityEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="low"/> <enumeration value="medium"/> <enumeration value="high"/> <enumeration value="unknown"/> </restriction> </simpleType>
Enum Constant and Description |
---|
HIGH
The fault is of high severity which will render the equipment unusable or any data generated by the equipment to be of no value.
|
LOW
The fault is of low severity and has only limited impact on the usability of the equipment or the value of the data generated by the equipment.
|
MEDIUM
The fault is of medium severity which will significantly limit the usability of the equipment or devalue the usefulness of the data generated by the equipment.
|
UNKNOWN
The fault is of unknown severity and hence its effect on the usability of the equipment or the usefulness of the data generated by the equipment can not be assessed.
|
Modifier and Type | Method and Description |
---|---|
static FaultSeverityEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static FaultSeverityEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FaultSeverityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaultSeverityEnum LOW
public static final FaultSeverityEnum MEDIUM
public static final FaultSeverityEnum HIGH
public static final FaultSeverityEnum UNKNOWN
public static FaultSeverityEnum[] values()
for (FaultSeverityEnum c : FaultSeverityEnum.values()) System.out.println(c);
public static FaultSeverityEnum 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 FaultSeverityEnum fromValue(java.lang.String v)