public enum AlertSignalPresence extends Enum<AlertSignalPresence>
Java class for AlertSignalPresence.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlertSignalPresence">
<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 an ALERT SIGNAL is currently not generated.
|
ON
Indicates that an ALERT SIGNAL is currently generated.
|
| Modifier and Type | Method and Description |
|---|---|
static AlertSignalPresence |
fromValue(String v) |
String |
value() |
static AlertSignalPresence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertSignalPresence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertSignalPresence ON
public static final AlertSignalPresence OFF
public static final AlertSignalPresence LATCHED
public static final AlertSignalPresence ACKNOWLEDGED
public static AlertSignalPresence[] values()
for (AlertSignalPresence c : AlertSignalPresence.values()) System.out.println(c);
public static AlertSignalPresence 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 AlertSignalPresence fromValue(String v)
Copyright © 2017. All rights reserved.