public static enum Track.Kind extends Enum<Track.Kind>
Enum Constant and Description |
---|
CAPTIONS
the track is used for captions
|
CHAPTERS
the track is used for chapters
|
DESCRIPTIONS
the track is used for descriptions
|
METADATA
the track is used to provide metadata
|
SUBTITLES
the track is used for subtitles
|
Modifier and Type | Method and Description |
---|---|
String |
getRealName()
The real name of the kind
|
static Track.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Track.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Track.Kind SUBTITLES
public static final Track.Kind CAPTIONS
public static final Track.Kind DESCRIPTIONS
public static final Track.Kind CHAPTERS
public static final Track.Kind METADATA
public static Track.Kind[] values()
for (Track.Kind c : Track.Kind.values()) System.out.println(c);
public static Track.Kind 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 nullpublic String getRealName()
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.