com.aol.acc
Enum AccFileSharingSessionProp

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

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

IAccFileSharingSession represents an incoming file sharing session.


Enum Constant Summary
AccessControlHook
          An optional hook to control access to shared files
CanStop
          Whether this session can be stopped cleanly
FileXferSession
          The current file transfer session
TopLevelListingCount
          The count of items from the top level directory
UNKNOWNVALUE
           
XferringFileSharingItem
          The currently transferring file sharing item
 
Method Summary
 boolean equals(int i)
           
static AccFileSharingSessionProp intToEnum(int value)
           
 AccFileSharingSessionProp or(AccFileSharingSessionProp val)
           
 int value()
           
static AccFileSharingSessionProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccFileSharingSessionProp[] 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 AccFileSharingSessionProp UNKNOWNVALUE

CanStop

public static final AccFileSharingSessionProp CanStop
Whether this session can be stopped cleanly


FileXferSession

public static final AccFileSharingSessionProp FileXferSession
The current file transfer session


TopLevelListingCount

public static final AccFileSharingSessionProp TopLevelListingCount
The count of items from the top level directory


XferringFileSharingItem

public static final AccFileSharingSessionProp XferringFileSharingItem
The currently transferring file sharing item


AccessControlHook

public static final AccFileSharingSessionProp AccessControlHook
An optional hook to control access to shared files

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccFileSharingSessionProp intToEnum(int value)