public static enum AudioStreamingLPCMParams.SampleFormat extends Enum<AudioStreamingLPCMParams.SampleFormat>
| Enum Constant and Description |
|---|
LPCM_16BIT_SIGNED_LITTLE_ENDIAN
LPCM data is represented by 16-bit signed integers, in little endian.
|
LPCM_8BIT_UNSIGNED
LPCM data is represented by 8-bit unsigned integers.
|
| Modifier and Type | Method and Description |
|---|---|
static AudioStreamingLPCMParams.SampleFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioStreamingLPCMParams.SampleFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioStreamingLPCMParams.SampleFormat LPCM_8BIT_UNSIGNED
public static final AudioStreamingLPCMParams.SampleFormat LPCM_16BIT_SIGNED_LITTLE_ENDIAN
public static AudioStreamingLPCMParams.SampleFormat[] values()
for (AudioStreamingLPCMParams.SampleFormat c : AudioStreamingLPCMParams.SampleFormat.values()) System.out.println(c);
public static AudioStreamingLPCMParams.SampleFormat 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