public static enum MediaSource.State extends java.lang.Enum<MediaSource.State>
Enum Constant and Description |
---|
ENDED |
INITIALIZING |
LIVE |
MUTED |
Modifier and Type | Method and Description |
---|---|
static MediaSource.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaSource.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaSource.State INITIALIZING
public static final MediaSource.State LIVE
public static final MediaSource.State ENDED
public static final MediaSource.State MUTED
public static MediaSource.State[] values()
for (MediaSource.State c : MediaSource.State.values()) System.out.println(c);
public static MediaSource.State 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 null6.0.0