com.aol.acc
Enum AccSecondarySessionServiceId

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

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


Enum Constant Summary
AudioVideo
          Real-time audio/video
Custom
          App-app communication
FileSharing
          Retrieving files from another user
FileXfer
          Sending files to another user
Im
          Text IM
ShareBuddies
          Sending a buddylist to another user
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccSecondarySessionServiceId intToEnum(int value)
           
 AccSecondarySessionServiceId or(AccSecondarySessionServiceId val)
           
 int value()
           
static AccSecondarySessionServiceId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccSecondarySessionServiceId[] 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 AccSecondarySessionServiceId UNKNOWNVALUE

Im

public static final AccSecondarySessionServiceId Im
Text IM


AudioVideo

public static final AccSecondarySessionServiceId AudioVideo
Real-time audio/video


FileXfer

public static final AccSecondarySessionServiceId FileXfer
Sending files to another user


FileSharing

public static final AccSecondarySessionServiceId FileSharing
Retrieving files from another user


ShareBuddies

public static final AccSecondarySessionServiceId ShareBuddies
Sending a buddylist to another user


Custom

public static final AccSecondarySessionServiceId Custom
App-app communication

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccSecondarySessionServiceId intToEnum(int value)