public static enum Track.TrackSubType extends Enum<Track.TrackSubType>
| Enum Constant and Description |
|---|
CAPTIONS
Captions track
|
CHAPTERS
Chapters track
|
DESCRIPTIONS
Descriptions track
|
METADATA
Metadata track
|
SUBTITLES
Subtitles track
|
| Modifier and Type | Method and Description |
|---|---|
static Track.TrackSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Track.TrackSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Track.TrackSubType SUBTITLES
public static final Track.TrackSubType CAPTIONS
public static final Track.TrackSubType DESCRIPTIONS
public static final Track.TrackSubType CHAPTERS
public static final Track.TrackSubType METADATA
public static Track.TrackSubType[] values()
for (Track.TrackSubType c : Track.TrackSubType.values()) System.out.println(c);
public static Track.TrackSubType 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 nullCopyright © 2022. All rights reserved.