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