public enum DefaultAttributes extends java.lang.Enum<DefaultAttributes>
Enum Constant and Description |
---|
FLAC_MONO_44KHZ
Flac, 44.1kHz sampling rate, one channel (mono), no volume change.
|
FLAC_STEREO_44KHZ
Flac, 44.1kHz sampling rate, two channels (stereo), no volume change.
|
MP3_128KBS_MONO_44KHZ
MP3, 128kb/s bit rate, 44.1kHz sampling rate, one channels (mono), no
volume change.
|
MP3_128KBS_STEREO_44KHZ
MP3, 128kb/s bit rate, 44.1kHz sampling rate, two channels (stereo), no
volume change.
|
MP3_192KBS_MONO_44KHZ
MP3, 192kb/s bit rate, 44.1kHz sampling rate, one channels (mono), no
volume change.
|
MP3_192KBS_STEREO_44KHZ
MP3, 192kb/s bit rate, 44.1kHz sampling rate, two channels (stereo), no
volume change.
|
MP3_320KBS_MONO_44KHZ
MP3, 320kb/s bit rate, 44.1kHz sampling rate, one channels (mono), no
volume change.
|
MP3_320KBS_STEREO_44KHZ
MP3, 320kb/s bit rate, 44.1kHz sampling rate, two channels (stereo), no
volume change.
|
OGG_MONO_44KHZ
Ogg, 44.1kHz sampling rate, one channel (mono), no volume change.
|
OGG_STEREO_44KHZ
Ogg, 44.1kHz sampling rate, two channels (stereo), no volume change.
|
WAV_PCM_S16LE_MONO_22KHZ
WAV PCM Signed 16 bit Little Endian, one channel (mono), 22050Hz sampling
rate, no volume change.
|
WAV_PCM_S16LE_MONO_44KHZ
WAV PCM Signed 16 bit Little Endian, one channel (mono), 44.1kHz sampling
rate, no volume change.
|
WAV_PCM_S16LE_MONO_8KHZ
WAV PCM Signed 16 bit Little Endian, one channel (mono), 8000Hz sampling
rate, no volume change.
|
WAV_PCM_S16LE_STEREO_22KHZ
WAV PCM Signed 16 bit Little Endian, one channel (mono), 22050Hz sampling
rate, no volume change.
|
WAV_PCM_S16LE_STEREO_44KHZ
WAV PCM Signed 16 bit Little Endian, two channel (stereo), 44.1kHz
sampling rate, no volume change.
|
WAV_PCM_S16LE_STEREO_8KHZ
WAV PCM Signed 16 bit Little Endian, one channel (mono), 8000Hz sampling
rate, no volume change.
|
Modifier and Type | Method and Description |
---|---|
Attributes |
getAttributes() |
static DefaultAttributes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultAttributes OGG_MONO_44KHZ
public static final DefaultAttributes OGG_STEREO_44KHZ
public static final DefaultAttributes FLAC_STEREO_44KHZ
public static final DefaultAttributes FLAC_MONO_44KHZ
public static final DefaultAttributes MP3_320KBS_MONO_44KHZ
public static final DefaultAttributes MP3_320KBS_STEREO_44KHZ
public static final DefaultAttributes MP3_192KBS_MONO_44KHZ
public static final DefaultAttributes MP3_192KBS_STEREO_44KHZ
public static final DefaultAttributes MP3_128KBS_MONO_44KHZ
public static final DefaultAttributes MP3_128KBS_STEREO_44KHZ
public static final DefaultAttributes WAV_PCM_S16LE_MONO_8KHZ
public static final DefaultAttributes WAV_PCM_S16LE_STEREO_8KHZ
public static final DefaultAttributes WAV_PCM_S16LE_MONO_22KHZ
public static final DefaultAttributes WAV_PCM_S16LE_STEREO_22KHZ
public static final DefaultAttributes WAV_PCM_S16LE_MONO_44KHZ
public static final DefaultAttributes WAV_PCM_S16LE_STEREO_44KHZ
public static DefaultAttributes[] values()
for (DefaultAttributes c : DefaultAttributes.values()) System.out.println(c);
public static DefaultAttributes 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 Attributes getAttributes()