com.aol.acc
Enum AccFileXferSessionProp

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

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

IAccFileXferSession is used for managing individual file/folder transfers.


Enum Constant Summary
CurrentFileXfer
          The current file being sent
DownloadDirPath
          The download path for files to be transfered to
FileSharingSession
          The file sharing session, if any
IsDirectory
          Whether this is a transfer of a file or directory
Name
          Name of the transfer, either the file or directory name
Send
          Whether this transfer is a send or a receive
Speed
          Overall bytes per second of this session
TotalBytes
          Total bytes to be transferred for this session
TotalBytesXferred
          Total bytes transferred so far
TotalNumFiles
          Total number of files in the transfer
TotalNumFilesRemaining
          Number of files remaining to be transfered
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccFileXferSessionProp intToEnum(int value)
           
 AccFileXferSessionProp or(AccFileXferSessionProp val)
           
 int value()
           
static AccFileXferSessionProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccFileXferSessionProp[] 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 AccFileXferSessionProp UNKNOWNVALUE

CurrentFileXfer

public static final AccFileXferSessionProp CurrentFileXfer
The current file being sent


DownloadDirPath

public static final AccFileXferSessionProp DownloadDirPath
The download path for files to be transfered to


FileSharingSession

public static final AccFileXferSessionProp FileSharingSession
The file sharing session, if any


IsDirectory

public static final AccFileXferSessionProp IsDirectory
Whether this is a transfer of a file or directory


Name

public static final AccFileXferSessionProp Name
Name of the transfer, either the file or directory name


Send

public static final AccFileXferSessionProp Send
Whether this transfer is a send or a receive


Speed

public static final AccFileXferSessionProp Speed
Overall bytes per second of this session


TotalBytes

public static final AccFileXferSessionProp TotalBytes
Total bytes to be transferred for this session


TotalBytesXferred

public static final AccFileXferSessionProp TotalBytesXferred
Total bytes transferred so far


TotalNumFiles

public static final AccFileXferSessionProp TotalNumFiles
Total number of files in the transfer


TotalNumFilesRemaining

public static final AccFileXferSessionProp TotalNumFilesRemaining
Number of files remaining to be transfered

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccFileXferSessionProp intToEnum(int value)