|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<IFileStatus.Props> org.jmythapi.protocol.response.IFileStatus.Props
public static enum IFileStatus.Props
The properties of an IFileStatus
response.
MythTV Protocol Version Matrix | ||||||
---|---|---|---|---|---|---|
Protocol | ||||||
Name | Type | Range | 00 | 32 | 59 | -1 |
FILE_EXISTS | Boolean | [00,-1) | X | X | X | X |
FILE_PATH | String | [32,-1) | - | X | X | X |
DEV | Integer | [59,-1) | - | - | X | X |
INO | Integer | [59,-1) | - | - | X | X |
MODE | Integer | [59,-1) | - | - | X | X |
NLINK | Integer | [59,-1) | - | - | X | X |
UID | Integer | [59,-1) | - | - | X | X |
GID | Integer | [59,-1) | - | - | X | X |
RDEV | Integer | [59,-1) | - | - | X | X |
SIZE | Long | [59,-1) | - | - | X | X |
BLKSIZE | Integer | [59,-1) | - | - | X | X |
BLOCKS | Integer | [59,-1) | - | - | X | X |
ATIME | Date | [59,-1) | - | - | X | X |
MTIME | Date | [59,-1) | - | - | X | X |
CTIME | Date | [59,-1) | - | - | X | X |
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 |
---|
public static final IFileStatus.Props FILE_EXISTS
IFileStatus.fileExists()
public static final IFileStatus.Props FILE_PATH
IFileStatus.getFilePath()
public static final IFileStatus.Props DEV
public static final IFileStatus.Props INO
public static final IFileStatus.Props MODE
public static final IFileStatus.Props NLINK
public static final IFileStatus.Props UID
public static final IFileStatus.Props GID
public static final IFileStatus.Props RDEV
public static final IFileStatus.Props SIZE
IFileStatus.getFileSize()
public static final IFileStatus.Props BLKSIZE
public static final IFileStatus.Props BLOCKS
public static final IFileStatus.Props ATIME
public static final IFileStatus.Props MTIME
public static final IFileStatus.Props CTIME
Method Detail |
---|
public static IFileStatus.Props[] values()
for (IFileStatus.Props c : IFileStatus.Props.values()) System.out.println(c);
public static IFileStatus.Props valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |