com.aol.acc
Enum AccLocationProp

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

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

The IAccLocation interface provides the access to geolocation
information about an AIM user.


Enum Constant Summary
Altitude
          The altitude of the user's location (meters)
City
          The user's city (A3)
Country
          The user's country
County
          The user's country (A2)
District
          The user's district (A4)
ExtraInfo
          Any extra info for the user (LOC)
GatewayIpAddress
          The IP of the gateway
GatewayMacAddress
          The MAC address of the gateway
HouseNum
          The user's house number (HNO)
HouseNumSuffix
          The user's house number suffix (HNS)
IpAddress
          The IP address of the client
Latitude
          The latitude of the user's location (degrees)
Longitude
          The longitude of the user's location (degrees)
MacAddress
          The MAC address of the client
Method
          The method of determining the user's location, i.e.
Name
          The name specified by the user of their location
Neighborhood
          The user's neighborhood (A5)
Nickname
          The nickname of this location; used to uniquely identify a favorite location
PostalCode
          The Postal Code of the user's location
State
          The user's state
Street
          The user's street (A6)
UNKNOWNVALUE
           
UseCount
          How many times the location has been Set
 
Method Summary
 boolean equals(int i)
           
static AccLocationProp intToEnum(int value)
           
 AccLocationProp or(AccLocationProp val)
           
 int value()
           
static AccLocationProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccLocationProp[] 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 AccLocationProp UNKNOWNVALUE

Name

public static final AccLocationProp Name
The name specified by the user of their location


Latitude

public static final AccLocationProp Latitude
The latitude of the user's location (degrees)


Longitude

public static final AccLocationProp Longitude
The longitude of the user's location (degrees)


Altitude

public static final AccLocationProp Altitude
The altitude of the user's location (meters)


HouseNum

public static final AccLocationProp HouseNum
The user's house number (HNO)


HouseNumSuffix

public static final AccLocationProp HouseNumSuffix
The user's house number suffix (HNS)


Street

public static final AccLocationProp Street
The user's street (A6)


ExtraInfo

public static final AccLocationProp ExtraInfo
Any extra info for the user (LOC)


Neighborhood

public static final AccLocationProp Neighborhood
The user's neighborhood (A5)


District

public static final AccLocationProp District
The user's district (A4)


City

public static final AccLocationProp City
The user's city (A3)


County

public static final AccLocationProp County
The user's country (A2)


State

public static final AccLocationProp State
The user's state


Country

public static final AccLocationProp Country
The user's country


PostalCode

public static final AccLocationProp PostalCode
The Postal Code of the user's location


Method

public static final AccLocationProp Method
The method of determining the user's location, i.e. GPS, 802.11


MacAddress

public static final AccLocationProp MacAddress
The MAC address of the client


GatewayMacAddress

public static final AccLocationProp GatewayMacAddress
The MAC address of the gateway


IpAddress

public static final AccLocationProp IpAddress
The IP address of the client


GatewayIpAddress

public static final AccLocationProp GatewayIpAddress
The IP of the gateway


Nickname

public static final AccLocationProp Nickname
The nickname of this location; used to uniquely identify a favorite location


UseCount

public static final AccLocationProp UseCount
How many times the location has been Set

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccLocationProp intToEnum(int value)