public enum RecordingFormat extends java.lang.Enum<RecordingFormat>
| Modifier and Type | Method and Description |
|---|---|
static RecordingFormat |
fromString(java.lang.String name) |
java.lang.String |
toString() |
static RecordingFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingFormat MP3
public static final RecordingFormat WAV
public static final RecordingFormat OGG
public static final RecordingFormat UNKNOWN
public static RecordingFormat[] values()
for (RecordingFormat c : RecordingFormat.values()) System.out.println(c);
public static RecordingFormat 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 java.lang.String toString()
toString in class java.lang.Enum<RecordingFormat>public static RecordingFormat fromString(java.lang.String name)