com.aol.acc
Enum AccClientInfoProp

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

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

IAccClientInfo is used for specifying configuration info used
during session signon.


Enum Constant Summary
BuildNumber
          The build number of the client
Country
          The country code, e.g.
Description
          The client description; format should be "Name/Version (key="MyKey")"
DistributionChannel
          The distribution channel for the client, if one has been assigned
Language
          The language of the client, e.g.
MajorVersion
          The major version number of the client
MinorVersion
          The minor version number of the client
PointVersion
          The point version number of the client
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccClientInfoProp intToEnum(int value)
           
 AccClientInfoProp or(AccClientInfoProp val)
           
 int value()
           
static AccClientInfoProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccClientInfoProp[] 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 AccClientInfoProp UNKNOWNVALUE

Description

public static final AccClientInfoProp Description
The client description; format should be "Name/Version (key="MyKey")"


DistributionChannel

public static final AccClientInfoProp DistributionChannel
The distribution channel for the client, if one has been assigned


MajorVersion

public static final AccClientInfoProp MajorVersion
The major version number of the client


MinorVersion

public static final AccClientInfoProp MinorVersion
The minor version number of the client


PointVersion

public static final AccClientInfoProp PointVersion
The point version number of the client


BuildNumber

public static final AccClientInfoProp BuildNumber
The build number of the client


Language

public static final AccClientInfoProp Language
The language of the client, e.g. "en"


Country

public static final AccClientInfoProp Country
The country code, e.g. "US"

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccClientInfoProp intToEnum(int value)