com.aol.acc
Enum AccWebPresencePrivacyMode

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

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

Values for the web presence privacy mode preference, aimcc.privacy.webPresenceMode


Enum Constant Summary
DenyNone
          Allow all web users to see/contact me
PermitNone
          Block all web users from seeing/contacting me
UNKNOWNVALUE
           
UsePrivacyMode
          Apply aimcc.privacy.mode for web users (_DenyNone or _Permit only)
 
Method Summary
 boolean equals(int i)
           
static AccWebPresencePrivacyMode intToEnum(int value)
           
 AccWebPresencePrivacyMode or(AccWebPresencePrivacyMode val)
           
 int value()
           
static AccWebPresencePrivacyMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccWebPresencePrivacyMode[] 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 AccWebPresencePrivacyMode UNKNOWNVALUE

UsePrivacyMode

public static final AccWebPresencePrivacyMode UsePrivacyMode
Apply aimcc.privacy.mode for web users (_DenyNone or _Permit only)


DenyNone

public static final AccWebPresencePrivacyMode DenyNone
Allow all web users to see/contact me


PermitNone

public static final AccWebPresencePrivacyMode PermitNone
Block all web users from seeing/contacting me

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccWebPresencePrivacyMode intToEnum(int value)