public static enum ExoVideo.Type extends java.lang.Enum<ExoVideo.Type>
| Enum Constant and Description |
|---|
DASH
See
Util.TYPE_DASH |
HLS
See
Util.TYPE_HLS |
OTHER
See
Util.TYPE_OTHER |
SS
See
Util.TYPE_SS |
| Modifier and Type | Method and Description |
|---|---|
static ExoVideo.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExoVideo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExoVideo.Type DASH
Util.TYPE_DASHpublic static final ExoVideo.Type SS
Util.TYPE_SSpublic static final ExoVideo.Type HLS
Util.TYPE_HLSpublic static final ExoVideo.Type OTHER
Util.TYPE_OTHERpublic static ExoVideo.Type[] values()
for (ExoVideo.Type c : ExoVideo.Type.values()) System.out.println(c);
public static ExoVideo.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null