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