com.aol.acc
Enum AccAvSessionProp

java.lang.Object
  extended by java.lang.Enum<AccAvSessionProp>
      extended by com.aol.acc.AccAvSessionProp
All Implemented Interfaces:
AccEnum, java.io.Serializable, java.lang.Comparable<AccAvSessionProp>

public enum AccAvSessionProp
extends java.lang.Enum<AccAvSessionProp>
implements AccEnum

IAccAvSession is used for controlling audio/video calls. Currently this interface
works only on Win32.


Enum Constant Summary
LocalVideoMode
          How your own video is displayed to you (or not)
NetworkQuality
          The "quality" of the AV session, based on latency/packet loss, range is 0-100
PromoteCentralized
          Whether Invite() should cause a move to a centralized conference or not
SessionType
          The type of AV session
SessionTypeProposed
          The type of AV session that the invitee is proposing to transition to
UNKNOWNVALUE
           
Video
          Checks if the AV session is a video session
 
Method Summary
 boolean equals(int i)
           
static AccAvSessionProp intToEnum(int value)
           
 AccAvSessionProp or(AccAvSessionProp val)
           
 int value()
           
static AccAvSessionProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccAvSessionProp[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWNVALUE

public static final AccAvSessionProp UNKNOWNVALUE

Video

public static final AccAvSessionProp Video
Checks if the AV session is a video session


NetworkQuality

public static final AccAvSessionProp NetworkQuality
The "quality" of the AV session, based on latency/packet loss, range is 0-100


SessionType

public static final AccAvSessionProp SessionType
The type of AV session


SessionTypeProposed

public static final AccAvSessionProp SessionTypeProposed
The type of AV session that the invitee is proposing to transition to


PromoteCentralized

public static final AccAvSessionProp PromoteCentralized
Whether Invite() should cause a move to a centralized conference or not


LocalVideoMode

public static final AccAvSessionProp LocalVideoMode
How your own video is displayed to you (or not)

Method Detail

values

public static final AccAvSessionProp[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AccAvSessionProp c : AccAvSessionProp.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static AccAvSessionProp 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

value

public final int value()
Specified by:
value in interface AccEnum

equals

public final boolean equals(int i)

or

public final AccAvSessionProp or(AccAvSessionProp val)

intToEnum

public static AccAvSessionProp intToEnum(int value)