com.aol.acc
Enum AccBuddyListProp

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

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

IAccBuddyList maintains the Buddy List information.


Enum Constant Summary
MaxBuddyCount
          The maximum number of buddies allowed on the buddy list
MaxBuddyCountPerGroup
          The maximum number of buddies that can be in a group
MaxBuddyNameLength
          The maximum length a buddy name can be
MaxGroupCount
          The maximum number of groups allowed on the buddy list
MaxGroupNameLength
          The maximum length a group name can be
Ready
          Determines if state information has been received for all buddies on the buddy list
Session
          The IAccSession associated with this buddy list
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccBuddyListProp intToEnum(int value)
           
 AccBuddyListProp or(AccBuddyListProp val)
           
 int value()
           
static AccBuddyListProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccBuddyListProp[] 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 AccBuddyListProp UNKNOWNVALUE

Session

public static final AccBuddyListProp Session
The IAccSession associated with this buddy list


MaxGroupCount

public static final AccBuddyListProp MaxGroupCount
The maximum number of groups allowed on the buddy list


MaxBuddyCount

public static final AccBuddyListProp MaxBuddyCount
The maximum number of buddies allowed on the buddy list


MaxGroupNameLength

public static final AccBuddyListProp MaxGroupNameLength
The maximum length a group name can be


MaxBuddyNameLength

public static final AccBuddyListProp MaxBuddyNameLength
The maximum length a buddy name can be


MaxBuddyCountPerGroup

public static final AccBuddyListProp MaxBuddyCountPerGroup
The maximum number of buddies that can be in a group


Ready

public static final AccBuddyListProp Ready
Determines if state information has been received for all buddies on the buddy list

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccBuddyListProp intToEnum(int value)