public enum AlertSignalManifestation extends Enum<AlertSignalManifestation>
Java class for AlertSignalManifestation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlertSignalManifestation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Aud"/>
<enumeration value="Vis"/>
<enumeration value="Tan"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AUDIBLE
Aud = Audible.
|
TANGIBLE
Tan = Tangible.
|
VISIBLE
Vis = Visible.
|
| Modifier and Type | Method and Description |
|---|---|
static AlertSignalManifestation |
fromValue(String v) |
String |
value() |
static AlertSignalManifestation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertSignalManifestation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertSignalManifestation AUDIBLE
public static final AlertSignalManifestation VISIBLE
public static final AlertSignalManifestation TANGIBLE
public static AlertSignalManifestation[] values()
for (AlertSignalManifestation c : AlertSignalManifestation.values()) System.out.println(c);
public static AlertSignalManifestation 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 AlertSignalManifestation fromValue(String v)
Copyright © 2017. All rights reserved.