com.aol.acc
Enum AccServiceTicketVersion

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

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

Values for the version property.


Enum Constant Summary
KRB
          Normal non-SNS use
REF
          SNS mcAuth token
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccServiceTicketVersion intToEnum(int value)
           
 AccServiceTicketVersion or(AccServiceTicketVersion val)
           
 int value()
           
static AccServiceTicketVersion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccServiceTicketVersion[] 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 AccServiceTicketVersion UNKNOWNVALUE

KRB

public static final AccServiceTicketVersion KRB
Normal non-SNS use


REF

public static final AccServiceTicketVersion REF
SNS mcAuth token

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccServiceTicketVersion intToEnum(int value)