public static enum Call.VideoStatus extends Enum<Call.VideoStatus>
| Enum Constant and Description |
|---|
AVAILABLE |
NOT_AVAILABLE
NOT_AVAILABLE - The user does not have video capability because video is disabled or a webcam is unplugged).
|
PAUSED |
REJECTED |
RUNNING |
STARTING |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static Call.VideoStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Call.VideoStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.VideoStatus NOT_AVAILABLE
public static final Call.VideoStatus AVAILABLE
public static final Call.VideoStatus STARTING
public static final Call.VideoStatus REJECTED
public static final Call.VideoStatus RUNNING
public static final Call.VideoStatus STOPPING
public static final Call.VideoStatus PAUSED
public static Call.VideoStatus[] values()
for (Call.VideoStatus c : Call.VideoStatus.values()) System.out.println(c);
public static Call.VideoStatus 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 © 2013. All Rights Reserved.