public enum MdsOperatingMode extends Enum<MdsOperatingMode>
Java class for MdsOperatingMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MdsOperatingMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Nml"/>
<enumeration value="Dmo"/>
<enumeration value="Srv"/>
<enumeration value="Mtn"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DMO
Dmo = Demo.
|
MTN
MTN = Maintenance.
|
NML
Nml = Normal.
|
SRV
Srv = Service.
|
| Modifier and Type | Method and Description |
|---|---|
static MdsOperatingMode |
fromValue(String v) |
String |
value() |
static MdsOperatingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MdsOperatingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MdsOperatingMode NML
public static final MdsOperatingMode DMO
public static final MdsOperatingMode SRV
public static final MdsOperatingMode MTN
public static MdsOperatingMode[] values()
for (MdsOperatingMode c : MdsOperatingMode.values()) System.out.println(c);
public static MdsOperatingMode 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 MdsOperatingMode fromValue(String v)
Copyright © 2018. All rights reserved.