public enum ProsodyVolume extends java.lang.Enum<ProsodyVolume>
Enum Constant and Description |
---|
LOUD |
MEDIUM |
SILENT |
SOFT |
XLOUD |
XSOFT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static ProsodyVolume |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProsodyVolume[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProsodyVolume SILENT
public static final ProsodyVolume XSOFT
public static final ProsodyVolume SOFT
public static final ProsodyVolume MEDIUM
public static final ProsodyVolume LOUD
public static final ProsodyVolume XLOUD
public static ProsodyVolume[] values()
for (ProsodyVolume c : ProsodyVolume.values()) System.out.println(c);
public static ProsodyVolume 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 toString()
toString
in class java.lang.Enum<ProsodyVolume>