com.skype
Enum Call.VideoStatus
java.lang.Object
java.lang.Enum<Call.VideoStatus>
com.skype.Call.VideoStatus
- All Implemented Interfaces:
- Serializable, Comparable<Call.VideoStatus>
- Enclosing class:
- Call
public static enum Call.VideoStatus
- extends Enum<Call.VideoStatus>
Enumeration of video status types.
NOT_AVAILABLE
public static final Call.VideoStatus NOT_AVAILABLE
- NOT_AVAILABLE - The user does not have video capability because video is disabled or a webcam is unplugged).
AVAILABLE - The user is video-capable but the video is not running (can occur during a manual send).
STARTING - The video is sending but is not yet running at full speed.
REJECTED - The receiver rejects the video feed (can occur during a manual receive).
RUNNING - The video is actively running.
STOPPING - The active video is in the process of stopping but has not halted yet.
PAUSED - The video call is placed on hold.
AVAILABLE
public static final Call.VideoStatus AVAILABLE
STARTING
public static final Call.VideoStatus STARTING
REJECTED
public static final Call.VideoStatus REJECTED
RUNNING
public static final Call.VideoStatus RUNNING
STOPPING
public static final Call.VideoStatus STOPPING
PAUSED
public static final Call.VideoStatus PAUSED
values
public static Call.VideoStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Call.VideoStatus c : Call.VideoStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Call.VideoStatus valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2004-2011. All Rights Reserved.