public enum PausableActivation extends Enum<PausableActivation>
Java class for PausableActivation.
The following schema fragment specifies the expected content contained within this class.
<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(String v) |
String |
value() |
static PausableActivation |
valueOf(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(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 PausableActivation fromValue(String v)
Copyright © 2016. All rights reserved.