public enum SoundFormatEnumeration extends Enum<SoundFormatEnumeration>
Java class for SoundFormatEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SoundFormatEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SoundRef"/>
<enumeration value="MessageRef"/>
<enumeration value="Text"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MESSAGE_REF
Reference of a preloaded text to play.
|
SOUND_REF
Preloaded sound File.
|
TEXT
Text to play.
|
| Modifier and Type | Method and Description |
|---|---|
static SoundFormatEnumeration |
fromValue(String v) |
String |
value() |
static SoundFormatEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoundFormatEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoundFormatEnumeration SOUND_REF
public static final SoundFormatEnumeration MESSAGE_REF
public static final SoundFormatEnumeration TEXT
public static SoundFormatEnumeration[] values()
for (SoundFormatEnumeration c : SoundFormatEnumeration.values()) System.out.println(c);
public static SoundFormatEnumeration 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 SoundFormatEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.