public enum MediaSourceState extends java.lang.Enum<MediaSourceState>
| Enum Constant and Description |
|---|
INITIALIZED
Created/initialized
|
READY
Ready state.
|
RUNNING
Running state.
|
STOPPED
Stopped state.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaSourceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaSourceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaSourceState INITIALIZED
public static final MediaSourceState READY
public static final MediaSourceState RUNNING
public static final MediaSourceState STOPPED
public static MediaSourceState[] values()
for (MediaSourceState c : MediaSourceState.values()) System.out.println(c);
public static MediaSourceState 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 nullCopyright © 2018 Amazon Web Services, Inc. All Rights Reserved.