public enum MediaDirection extends java.lang.Enum<MediaDirection>
| Enum Constant and Description |
|---|
INACTIVE
inactive
|
RECEIVE_ONLY
receive Only
|
SEND_ONLY
send Only
|
SEND_RECEIVE
send Receive
|
UNEXPECTED_VALUE
For MediaDirection values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MediaDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaDirection INACTIVE
public static final MediaDirection SEND_ONLY
public static final MediaDirection RECEIVE_ONLY
public static final MediaDirection SEND_RECEIVE
public static final MediaDirection UNEXPECTED_VALUE
public static MediaDirection[] values()
for (MediaDirection c : MediaDirection.values()) System.out.println(c);
public static MediaDirection 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