com.aol.acc
Enum AccDirEntryProp

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

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

DEPRECATED. The IAccDirEntry interface is used to wrap AIM directory entries.


Enum Constant Summary
City
          The user's city in the directory
Country
          The user's country in the directory
FirstName
          The user's first name in the directory
LastName
          The user's last name in the directory
MaidenName
          The user's maiden name in the directory
MiddleName
          The user's middle name in the directory
NickName
          The user's nick name in the directory
State
          The user's state in the directory
StreetAddress
          The user's street address in the directory
UNKNOWNVALUE
           
UserName
          The username in the directory
ZipCode
          The user's zip code in the directory
 
Method Summary
 boolean equals(int i)
           
static AccDirEntryProp intToEnum(int value)
           
 AccDirEntryProp or(AccDirEntryProp val)
           
 int value()
           
static AccDirEntryProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccDirEntryProp[] 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 AccDirEntryProp UNKNOWNVALUE

UserName

public static final AccDirEntryProp UserName
The username in the directory


FirstName

public static final AccDirEntryProp FirstName
The user's first name in the directory


LastName

public static final AccDirEntryProp LastName
The user's last name in the directory


MiddleName

public static final AccDirEntryProp MiddleName
The user's middle name in the directory


MaidenName

public static final AccDirEntryProp MaidenName
The user's maiden name in the directory


NickName

public static final AccDirEntryProp NickName
The user's nick name in the directory


StreetAddress

public static final AccDirEntryProp StreetAddress
The user's street address in the directory


City

public static final AccDirEntryProp City
The user's city in the directory


State

public static final AccDirEntryProp State
The user's state in the directory


ZipCode

public static final AccDirEntryProp ZipCode
The user's zip code in the directory


Country

public static final AccDirEntryProp Country
The user's country in the directory

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccDirEntryProp intToEnum(int value)