org.jmythapi.protocol.response
Enum IFileStatus.Props

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

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

The properties of an IFileStatus response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange003259-1
FILE_EXISTSBoolean[00,-1)XXXX
FILE_PATHString[32,-1)-XXX
DEVInteger[59,-1)--XX
INOInteger[59,-1)--XX
MODEInteger[59,-1)--XX
NLINKInteger[59,-1)--XX
UIDInteger[59,-1)--XX
GIDInteger[59,-1)--XX
RDEVInteger[59,-1)--XX
SIZELong[59,-1)--XX
BLKSIZEInteger[59,-1)--XX
BLOCKSInteger[59,-1)--XX
ATIMEDate[59,-1)--XX
MTIMEDate[59,-1)--XX
CTIMEDate[59,-1)--XX


Enum Constant Summary
ATIME
          Time of last access.
BLKSIZE
          Blocksize for filesystem I/O.
BLOCKS
          Number of blocks allocated.
CTIME
          Time of last status change.
DEV
          The id of the device containing the file.
FILE_EXISTS
          Specifies if the requested file exists.
FILE_PATH
          The path to the file.
GID
          Group id of owner.
INO
          Inode number.
MODE
          Protection.
MTIME
          Time of last modification.
NLINK
          Number of hard links.
RDEV
          Device id (if special file).
SIZE
          Total size, in bytes.
UID
          User id of owner.
 
Method Summary
static IFileStatus.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IFileStatus.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_EXISTS

public static final IFileStatus.Props FILE_EXISTS
Specifies if the requested file exists.

See Also:
IFileStatus.fileExists()

FILE_PATH

public static final IFileStatus.Props FILE_PATH
The path to the file.

Since:
32
See Also:
IFileStatus.getFilePath()

DEV

public static final IFileStatus.Props DEV
The id of the device containing the file.

Since:
59

INO

public static final IFileStatus.Props INO
Inode number.

Since:
59

MODE

public static final IFileStatus.Props MODE
Protection.

Since:
59

NLINK

public static final IFileStatus.Props NLINK
Number of hard links.

Since:
59

UID

public static final IFileStatus.Props UID
User id of owner.

Since:
59

GID

public static final IFileStatus.Props GID
Group id of owner.

Since:
59

RDEV

public static final IFileStatus.Props RDEV
Device id (if special file).

Since:
59

SIZE

public static final IFileStatus.Props SIZE
Total size, in bytes.

Since:
59
See Also:
IFileStatus.getFileSize()

BLKSIZE

public static final IFileStatus.Props BLKSIZE
Blocksize for filesystem I/O.

Since:
59

BLOCKS

public static final IFileStatus.Props BLOCKS
Number of blocks allocated.


ATIME

public static final IFileStatus.Props ATIME
Time of last access.

Since:
59

MTIME

public static final IFileStatus.Props MTIME
Time of last modification.

Since:
59

CTIME

public static final IFileStatus.Props CTIME
Time of last status change.

Since:
59
Method Detail

values

public static IFileStatus.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 (IFileStatus.Props c : IFileStatus.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 IFileStatus.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.