com.aol.acc
Enum AccImSessionProp

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

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

IAccImSession is used for controlling (D)IM/Chat conversations,
for sending messages, and for typing indication.


Enum Constant Summary
CanStop
          Whether embedded data sent in this session can be stopped cleanly
ChatExchange
          If a chat room session, the exchange value of the chat room (see AccImExchange)
ChatInstance
          If a chat room session, the particular instance of a given chat room
ChatRoomFullyQualifiedName
          If a chat room session, the chat room name with path, if any
ChatRoomName
          If a chat room session, the chat room name
MaxImLength
          Maximum length of IM content, including embedded data and hidden markup
MaxVisibleImLength
          Maximum length of IM text, excluding markup
OutgoingPersonality
          The outgoing personality name to be used for the session
PromoteCentralized
          Whether a session should move to a server or P2P when Invite is called
RateState
          The rate limit state of a session
SessionType
          The type of session (e.g.
SessionTypeProposed
          The new proposed session type
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccImSessionProp intToEnum(int value)
           
 AccImSessionProp or(AccImSessionProp val)
           
 int value()
           
static AccImSessionProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccImSessionProp[] 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 AccImSessionProp UNKNOWNVALUE

SessionType

public static final AccImSessionProp SessionType
The type of session (e.g. DIM, Chat)


SessionTypeProposed

public static final AccImSessionProp SessionTypeProposed
The new proposed session type


ChatExchange

public static final AccImSessionProp ChatExchange
If a chat room session, the exchange value of the chat room (see AccImExchange)


ChatRoomName

public static final AccImSessionProp ChatRoomName
If a chat room session, the chat room name


ChatRoomFullyQualifiedName

public static final AccImSessionProp ChatRoomFullyQualifiedName
If a chat room session, the chat room name with path, if any


ChatInstance

public static final AccImSessionProp ChatInstance
If a chat room session, the particular instance of a given chat room


CanStop

public static final AccImSessionProp CanStop
Whether embedded data sent in this session can be stopped cleanly


OutgoingPersonality

public static final AccImSessionProp OutgoingPersonality
The outgoing personality name to be used for the session


MaxImLength

public static final AccImSessionProp MaxImLength
Maximum length of IM content, including embedded data and hidden markup


MaxVisibleImLength

public static final AccImSessionProp MaxVisibleImLength
Maximum length of IM text, excluding markup


RateState

public static final AccImSessionProp RateState
The rate limit state of a session


PromoteCentralized

public static final AccImSessionProp PromoteCentralized
Whether a session should move to a server or P2P when Invite is called

Method Detail

values

public static final AccImSessionProp[] 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(AccImSessionProp c : AccImSessionProp.values())
        System.out.println(c);

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

valueOf

public static AccImSessionProp 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 AccImSessionProp or(AccImSessionProp val)

intToEnum

public static AccImSessionProp intToEnum(int value)