public enum StreamState extends Enum<StreamState>
| Enum Constant and Description |
|---|
CONNECTING |
PUBLISHED |
PUBLISHING |
STOPPED |
STREAM_CREATING |
UNPUBLISHED |
| Modifier and Type | Method and Description |
|---|---|
static StreamState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamState STOPPED
public static final StreamState CONNECTING
public static final StreamState STREAM_CREATING
public static final StreamState PUBLISHING
public static final StreamState PUBLISHED
public static final StreamState UNPUBLISHED
public static StreamState[] values()
for (StreamState c : StreamState.values()) System.out.println(c);
public static StreamState 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 © 2005–2016 Red5. All rights reserved.