public enum MediaStreamDirection extends java.lang.Enum<MediaStreamDirection>
| Enum Constant and Description |
|---|
CALLEE_TO_CALLER
callee To Caller
|
CALLER_TO_CALLEE
caller To Callee
|
UNEXPECTED_VALUE
For MediaStreamDirection values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MediaStreamDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaStreamDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaStreamDirection CALLER_TO_CALLEE
public static final MediaStreamDirection CALLEE_TO_CALLER
public static final MediaStreamDirection UNEXPECTED_VALUE
public static MediaStreamDirection[] values()
for (MediaStreamDirection c : MediaStreamDirection.values()) System.out.println(c);
public static MediaStreamDirection 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