com.skype.api
Enum Participant.VideoStatus

java.lang.Object
  extended by java.lang.Enum<Participant.VideoStatus>
      extended by com.skype.api.Participant.VideoStatus
All Implemented Interfaces:
EnumConverting, java.io.Serializable, java.lang.Comparable<Participant.VideoStatus>
Enclosing class:
Participant

public static enum Participant.VideoStatus
extends java.lang.Enum<Participant.VideoStatus>
implements EnumConverting

Recognized values for the P_VIDEO_STATUS property. This property applies to Participant's video send capability, not capability to receive video.


Enum Constant Summary
STREAMING
          Indicates that the participant is currently sending video.
VIDEO_AVAILABLE
          Indicates that video is available for this participant.
VIDEO_CONNECTING
          Transitional state indicating that the Participant is attempting to initiate video send.
VIDEO_NA
          Indicates that this Participant does not have video available..
VIDEO_ON_HOLD
          Indicates that the participant video send is currently paused.
VIDEO_UNKNOWN
          Video status is not (yet) determined.
 
Field Summary
static int STREAMING_VALUE
           
static int VIDEO_AVAILABLE_VALUE
           
static int VIDEO_CONNECTING_VALUE
           
static int VIDEO_NA_VALUE
           
static int VIDEO_ON_HOLD_VALUE
           
static int VIDEO_UNKNOWN_VALUE
           
 
Method Summary
 EnumConverting convert(int from)
           
static Participant.VideoStatus get(int from)
           
 EnumConverting[] getArray(int size)
           
 EnumConverting getDefault()
           
 int getId()
           
static Participant.VideoStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Participant.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

VIDEO_UNKNOWN

public static final Participant.VideoStatus VIDEO_UNKNOWN
Video status is not (yet) determined.


VIDEO_NA

public static final Participant.VideoStatus VIDEO_NA
Indicates that this Participant does not have video available..


VIDEO_AVAILABLE

public static final Participant.VideoStatus VIDEO_AVAILABLE
Indicates that video is available for this participant. When the Participant.P_VIDEO_STATUS obtains this state, it is possible to retrieve the Video object, using Participant.GetVideo method. Further operations, such as starting or stopping the video send/receive will then go through the Video object.


VIDEO_CONNECTING

public static final Participant.VideoStatus VIDEO_CONNECTING
Transitional state indicating that the Participant is attempting to initiate video send.


STREAMING

public static final Participant.VideoStatus STREAMING
Indicates that the participant is currently sending video.


VIDEO_ON_HOLD

public static final Participant.VideoStatus VIDEO_ON_HOLD
Indicates that the participant video send is currently paused.

Field Detail

VIDEO_UNKNOWN_VALUE

public static final int VIDEO_UNKNOWN_VALUE
See Also:
Constant Field Values

VIDEO_NA_VALUE

public static final int VIDEO_NA_VALUE
See Also:
Constant Field Values

VIDEO_AVAILABLE_VALUE

public static final int VIDEO_AVAILABLE_VALUE
See Also:
Constant Field Values

VIDEO_CONNECTING_VALUE

public static final int VIDEO_CONNECTING_VALUE
See Also:
Constant Field Values

STREAMING_VALUE

public static final int STREAMING_VALUE
See Also:
Constant Field Values

VIDEO_ON_HOLD_VALUE

public static final int VIDEO_ON_HOLD_VALUE
See Also:
Constant Field Values
Method Detail

values

public static Participant.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 (Participant.VideoStatus c : Participant.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 Participant.VideoStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getId

public int getId()
Specified by:
getId in interface EnumConverting

getDefault

public EnumConverting getDefault()
Specified by:
getDefault in interface EnumConverting

convert

public EnumConverting convert(int from)
Specified by:
convert in interface EnumConverting

getArray

public EnumConverting[] getArray(int size)
Specified by:
getArray in interface EnumConverting

get

public static Participant.VideoStatus get(int from)


Copyright © 2010, 2011 Skype Technologies. All Rights Reserved.