com.aol.acc
Enum AccFileSharingItemProp

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

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

IAccFileSharingItem represents an item in an incoming file sharing listing.


Enum Constant Summary
FileBytes
          Number of bytes in the item
FileMacCreator
          Macintosh creator code for the item
FileMacFlags
          Macintosh Finder flags for the item
FileMacType
          Macintosh file type code for the item
FileSharingSession
          The file sharing session associated with the item
FileTimeCreated
          Item's creation time
FileTimeModified
          Item's last modified time
IsDirectory
          Determine if the item being shared is a directory or file
ListingCount
          The count of sub-items for this item; available after OnFileSharingRequestListingResult
LocalPath
          The local location that this item will be downloaded to
ParentItem
          The parent item, if any
RemoteName
          Item's name on the remote side
RemotePath
          Item's logical path on the remote side
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccFileSharingItemProp intToEnum(int value)
           
 AccFileSharingItemProp or(AccFileSharingItemProp val)
           
 int value()
           
static AccFileSharingItemProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccFileSharingItemProp[] 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 AccFileSharingItemProp UNKNOWNVALUE

IsDirectory

public static final AccFileSharingItemProp IsDirectory
Determine if the item being shared is a directory or file


ListingCount

public static final AccFileSharingItemProp ListingCount
The count of sub-items for this item; available after OnFileSharingRequestListingResult


LocalPath

public static final AccFileSharingItemProp LocalPath
The local location that this item will be downloaded to


ParentItem

public static final AccFileSharingItemProp ParentItem
The parent item, if any


RemoteName

public static final AccFileSharingItemProp RemoteName
Item's name on the remote side


RemotePath

public static final AccFileSharingItemProp RemotePath
Item's logical path on the remote side


FileBytes

public static final AccFileSharingItemProp FileBytes
Number of bytes in the item


FileMacCreator

public static final AccFileSharingItemProp FileMacCreator
Macintosh creator code for the item


FileMacFlags

public static final AccFileSharingItemProp FileMacFlags
Macintosh Finder flags for the item


FileMacType

public static final AccFileSharingItemProp FileMacType
Macintosh file type code for the item


FileTimeCreated

public static final AccFileSharingItemProp FileTimeCreated
Item's creation time


FileTimeModified

public static final AccFileSharingItemProp FileTimeModified
Item's last modified time


FileSharingSession

public static final AccFileSharingItemProp FileSharingSession
The file sharing session associated with the item

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccFileSharingItemProp intToEnum(int value)