com.aol.acc
Enum AccEmoticonSetProp

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

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

The IAccEmoticonSet interface is used to access emoticons (smileys).


Enum Constant Summary
BartId
          The bart id of the emoticon set
Description
          The description of the emoticon set
PaletteIconData
          The data for the smiley "button" icon, as an array of VT_UI1
PaletteIconDataStream
          The data for the smiley "button" icon, as an IAccStream
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccEmoticonSetProp intToEnum(int value)
           
 AccEmoticonSetProp or(AccEmoticonSetProp val)
           
 int value()
           
static AccEmoticonSetProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccEmoticonSetProp[] 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 AccEmoticonSetProp UNKNOWNVALUE

BartId

public static final AccEmoticonSetProp BartId
The bart id of the emoticon set


Description

public static final AccEmoticonSetProp Description
The description of the emoticon set


PaletteIconData

public static final AccEmoticonSetProp PaletteIconData
The data for the smiley "button" icon, as an array of VT_UI1


PaletteIconDataStream

public static final AccEmoticonSetProp PaletteIconDataStream
The data for the smiley "button" icon, as an IAccStream

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccEmoticonSetProp intToEnum(int value)