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