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