public static enum GetAudio.sound_file_format extends java.lang.Enum<GetAudio.sound_file_format>
| Enum Constant and Description |
|---|
sf_aiff |
sf_mp1
MPEG Layer 1, aka mpg
|
sf_mp123
MPEG Layer 1,2 or 3; whatever .mp3, .mp2, .mp1 or .mpg contains
|
sf_mp2
MPEG Layer 2
|
sf_mp3
MPEG Layer 3
|
sf_ogg |
sf_raw |
sf_unknown |
sf_wave |
| Modifier and Type | Method and Description |
|---|---|
static GetAudio.sound_file_format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GetAudio.sound_file_format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetAudio.sound_file_format sf_unknown
public static final GetAudio.sound_file_format sf_raw
public static final GetAudio.sound_file_format sf_wave
public static final GetAudio.sound_file_format sf_aiff
public static final GetAudio.sound_file_format sf_mp1
public static final GetAudio.sound_file_format sf_mp2
public static final GetAudio.sound_file_format sf_mp3
public static final GetAudio.sound_file_format sf_mp123
public static final GetAudio.sound_file_format sf_ogg
public static GetAudio.sound_file_format[] values()
for (GetAudio.sound_file_format c : GetAudio.sound_file_format.values()) System.out.println(c);
public static GetAudio.sound_file_format 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 null