public static enum Phone.VideoStreamMode extends java.lang.Enum<Phone.VideoStreamMode>
Enum Constant and Description |
---|
AUXILIARY
Remote videos are different streams
|
COMPOSITED
Composite remote videos as one video stream
|
Modifier and Type | Method and Description |
---|---|
static Phone.VideoStreamMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Phone.VideoStreamMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phone.VideoStreamMode COMPOSITED
public static final Phone.VideoStreamMode AUXILIARY
public static Phone.VideoStreamMode[] values()
for (Phone.VideoStreamMode c : Phone.VideoStreamMode.values()) System.out.println(c);
public static Phone.VideoStreamMode 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