com.aol.acc
Enum AccBartItemType

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

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

Types of BART items. See AccBartItemProp_BartItemType.


Enum Constant Summary
ArriveSound
           
Badge
           
BigIcon
           
BuddyIcon
           
CurrentAvTrack
           
DepartSound
           
EmoticonSet
           
FlashWallpaper
           
ImInitialSound
           
ImmersiveWallpaper
           
ImSound
           
Location
           
RadioStation
           
RichName
           
SmallIcon
           
StatusText
           
StatusTextLink
           
StatusTextTimestamp
           
SuperIcon
           
SuperIconTrigger
           
UNKNOWNVALUE
           
Wallpaper
           
 
Method Summary
 boolean equals(int i)
           
static AccBartItemType intToEnum(int value)
           
 AccBartItemType or(AccBartItemType val)
           
 int value()
           
static AccBartItemType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccBartItemType[] 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 AccBartItemType UNKNOWNVALUE

SmallIcon

public static final AccBartItemType SmallIcon

BuddyIcon

public static final AccBartItemType BuddyIcon

StatusText

public static final AccBartItemType StatusText

ArriveSound

public static final AccBartItemType ArriveSound

RichName

public static final AccBartItemType RichName

SuperIcon

public static final AccBartItemType SuperIcon

RadioStation

public static final AccBartItemType RadioStation

SuperIconTrigger

public static final AccBartItemType SuperIconTrigger

StatusTextLink

public static final AccBartItemType StatusTextLink

Location

public static final AccBartItemType Location

BigIcon

public static final AccBartItemType BigIcon

StatusTextTimestamp

public static final AccBartItemType StatusTextTimestamp

CurrentAvTrack

public static final AccBartItemType CurrentAvTrack

DepartSound

public static final AccBartItemType DepartSound

Wallpaper

public static final AccBartItemType Wallpaper

ImSound

public static final AccBartItemType ImSound

Badge

public static final AccBartItemType Badge

ImInitialSound

public static final AccBartItemType ImInitialSound

FlashWallpaper

public static final AccBartItemType FlashWallpaper

ImmersiveWallpaper

public static final AccBartItemType ImmersiveWallpaper

EmoticonSet

public static final AccBartItemType EmoticonSet
Method Detail

values

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

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

valueOf

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

intToEnum

public static AccBartItemType intToEnum(int value)