com.skype
Enum Call.VideoStatus

java.lang.Object
  extended by java.lang.Enum<Call.VideoStatus>
      extended by 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.


Enum Constant Summary
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
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.