public static enum MediaInfo.Tag extends Enum<MediaInfo.Tag>
MediaInfo
.Enum Constant and Description |
---|
METADATA
The metadata for the photo/video.
|
PENDING
Indicate the photo/video is still under processing and metadata is
not available yet.
|
Modifier and Type | Method and Description |
---|---|
static MediaInfo.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaInfo.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaInfo.Tag PENDING
public static final MediaInfo.Tag METADATA
public static MediaInfo.Tag[] values()
for (MediaInfo.Tag c : MediaInfo.Tag.values()) System.out.println(c);
public static MediaInfo.Tag 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