com.aol.acc
Enum AccImExchange

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

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


Enum Constant Summary
PrivateAutomatic
          Automatically pick the chat type
PrivateNonSecure
          Specify a nonsecure room
PrivateSecure
          Specify a secure room
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccImExchange intToEnum(int value)
           
 AccImExchange or(AccImExchange val)
           
 int value()
           
static AccImExchange valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccImExchange[] 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 AccImExchange UNKNOWNVALUE

PrivateAutomatic

public static final AccImExchange PrivateAutomatic
Automatically pick the chat type


PrivateSecure

public static final AccImExchange PrivateSecure
Specify a secure room


PrivateNonSecure

public static final AccImExchange PrivateNonSecure
Specify a nonsecure room

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccImExchange intToEnum(int value)