public enum PausableActivation extends java.lang.Enum<PausableActivation>
Java-Klasse für PausableActivation.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="PausableActivation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="On"/>
<enumeration value="Off"/>
<enumeration value="Psd"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OFF
The alert system element or the the alert system itself is not operating.
|
ON
The alert system element or the the alert system itself is operating.
|
PAUSED
Psd = Paused.
|
| Modifier and Type | Method and Description |
|---|---|
static PausableActivation |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static PausableActivation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PausableActivation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PausableActivation ON
public static final PausableActivation OFF
public static final PausableActivation PAUSED
public static PausableActivation[] values()
for (PausableActivation c : PausableActivation.values()) System.out.println(c);
public static PausableActivation 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 PausableActivation fromValue(java.lang.String v)