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