public enum TextTrackKind extends Enum<TextTrackKind>
| Enum Constant and Description |
|---|
captions |
chapters |
descriptions |
metadata |
subtitle |
| Modifier and Type | Method and Description |
|---|---|
static TextTrackKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextTrackKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextTrackKind subtitle
public static final TextTrackKind captions
public static final TextTrackKind descriptions
public static final TextTrackKind chapters
public static final TextTrackKind metadata
public static TextTrackKind[] values()
for (TextTrackKind c : TextTrackKind.values()) System.out.println(c);
public static TextTrackKind 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 © 2017. All rights reserved.