com.aol.acc
Enum AccUserFlags

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

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

Values for AccUserProp_Flags.


Enum Constant Summary
AOL
          On AOL
Beast
          Not used at this time
Bot
          Automated responder
BuddyMatchDirect
          Matches an interest of yours
BuddyMatchIndirect
          Matches an interest of a buddy
ICQ
          On ICQ
ImForwarding
          Forwarding IMs to a device
Internal
          AOL internal
InternetFree
          On AIM or ICQ
Official
          Trusted by AOL
OneWayForwarding
          Device forwarded to cannot respond
Unconfirmed
          Email address is unconfirmed
UNKNOWNVALUE
           
Wireless
          On a wireless device
 
Method Summary
 boolean equals(int i)
           
static AccUserFlags intToEnum(int value)
           
 AccUserFlags or(AccUserFlags val)
           
 int value()
           
static AccUserFlags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccUserFlags[] 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 AccUserFlags UNKNOWNVALUE

Unconfirmed

public static final AccUserFlags Unconfirmed
Email address is unconfirmed


AOL

public static final AccUserFlags AOL
On AOL


InternetFree

public static final AccUserFlags InternetFree
On AIM or ICQ


ICQ

public static final AccUserFlags ICQ
On ICQ


Wireless

public static final AccUserFlags Wireless
On a wireless device


Internal

public static final AccUserFlags Internal
AOL internal


ImForwarding

public static final AccUserFlags ImForwarding
Forwarding IMs to a device


Bot

public static final AccUserFlags Bot
Automated responder


Beast

public static final AccUserFlags Beast
Not used at this time


OneWayForwarding

public static final AccUserFlags OneWayForwarding
Device forwarded to cannot respond


Official

public static final AccUserFlags Official
Trusted by AOL


BuddyMatchDirect

public static final AccUserFlags BuddyMatchDirect
Matches an interest of yours


BuddyMatchIndirect

public static final AccUserFlags BuddyMatchIndirect
Matches an interest of a buddy

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccUserFlags intToEnum(int value)