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