public enum SystemStatusType extends Enum<SystemStatusType>
Java class for SystemStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SystemStatusType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OK"/>
<enumeration value="UnplannedOutage"/>
<enumeration value="InMaintenance"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
IN_MAINTENANCE |
OK |
UNPLANNED_OUTAGE |
| Modifier and Type | Method and Description |
|---|---|
static SystemStatusType |
fromValue(String v) |
String |
value() |
static SystemStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemStatusType OK
public static final SystemStatusType UNPLANNED_OUTAGE
public static final SystemStatusType IN_MAINTENANCE
public static SystemStatusType[] values()
for (SystemStatusType c : SystemStatusType.values()) System.out.println(c);
public static SystemStatusType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static SystemStatusType fromValue(String v)
Copyright © 2017. All rights reserved.