org.jmythapi.protocol.response
Enum IStorageGroupFile.Props

java.lang.Object
  extended by java.lang.Enum<IStorageGroupFile.Props>
      extended by org.jmythapi.protocol.response.IStorageGroupFile.Props
All Implemented Interfaces:
Serializable, Comparable<IStorageGroupFile.Props>
Enclosing interface:
IStorageGroupFile

public static enum IStorageGroupFile.Props
extends Enum<IStorageGroupFile.Props>

The properties of an IStorageGroupFile response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange44-1
FILE_TYPEString[44,-1)XX
FILE_PATHString[44,-1)XX
LAST_MODDate[44,-1)XX
FILE_SIZELong[44,-1)XX


Enum Constant Summary
FILE_PATH
          The full path to the file.
FILE_SIZE
          The file size.
FILE_TYPE
          The type of the entry.
LAST_MOD
          The last modified date.
 
Method Summary
static IStorageGroupFile.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IStorageGroupFile.Props[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FILE_TYPE

public static final IStorageGroupFile.Props FILE_TYPE
The type of the entry.

See Also:
IStorageGroupFile.getFileType()

FILE_PATH

public static final IStorageGroupFile.Props FILE_PATH
The full path to the file.

See Also:
IStorageGroupFile.getFilePath()

LAST_MOD

public static final IStorageGroupFile.Props LAST_MOD
The last modified date.

See Also:
IStorageGroupFile.getLastModified()

FILE_SIZE

public static final IStorageGroupFile.Props FILE_SIZE
The file size.

See Also:
IStorageGroupFile.getFileSize()
Method Detail

values

public static IStorageGroupFile.Props[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IStorageGroupFile.Props c : IStorageGroupFile.Props.values())
    System.out.println(c);

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

valueOf

public static IStorageGroupFile.Props valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2008-2013. All Rights Reserved.