public static enum MediaInfo.Format extends java.lang.Enum<MediaInfo.Format>
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static MediaInfo.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaInfo.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaInfo.Format UNKNOWN
public static final MediaInfo.Format AAC
public static final MediaInfo.Format AVC
public static final MediaInfo.Format MPEG4_VID
public static MediaInfo.Format[] values()
for (MediaInfo.Format c : MediaInfo.Format.values()) System.out.println(c);
public static MediaInfo.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 nullpublic int getValue()