com.aol.acc
Enum AccInstanceProp

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

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

The IAccInstance interface is used to get information about
all (other) clients that are signed on with the same identity.


Enum Constant Summary
Flags
          The user flags for the instance, from AccUserFlags
Id
          The id for this instance
IpAddress
          The IP address of the instance, as seen by the AIM server
OnlineTime
          The online time of the instance, in seconds
Port
          The port of the instance, as seen by the AIM server
State
          The state of this instance
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccInstanceProp intToEnum(int value)
           
 AccInstanceProp or(AccInstanceProp val)
           
 int value()
           
static AccInstanceProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccInstanceProp[] 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 AccInstanceProp UNKNOWNVALUE

Id

public static final AccInstanceProp Id
The id for this instance


State

public static final AccInstanceProp State
The state of this instance


OnlineTime

public static final AccInstanceProp OnlineTime
The online time of the instance, in seconds


IpAddress

public static final AccInstanceProp IpAddress
The IP address of the instance, as seen by the AIM server


Port

public static final AccInstanceProp Port
The port of the instance, as seen by the AIM server


Flags

public static final AccInstanceProp Flags
The user flags for the instance, from AccUserFlags

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccInstanceProp intToEnum(int value)