public enum AudioType extends Enum<AudioType>
| Enum Constant and Description |
|---|
PCM
PCM raw audio
|
| Modifier and Type | Method and Description |
|---|---|
static AudioType |
valueForString(String value)
Convert String to AudioType
|
static AudioType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioType PCM
public static AudioType[] values()
for (AudioType c : AudioType.values()) System.out.println(c);
public static AudioType 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 null