public enum PathMetaSort extends java.lang.Enum<PathMetaSort>
| Enum Constant and Description |
|---|
CreationTime |
CreationTimeDesc |
IsDirectory |
IsDirectoryDesc |
LastAccessTime |
LastAccessTimeDesc |
LastModifiedTime |
LastModifiedTimeDesc |
Name |
NameDesc |
Size |
SizeDesc |
| Modifier and Type | Method and Description |
|---|---|
static PathMetaSort |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathMetaSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathMetaSort Name
public static final PathMetaSort IsDirectory
public static final PathMetaSort CreationTime
public static final PathMetaSort LastModifiedTime
public static final PathMetaSort LastAccessTime
public static final PathMetaSort Size
public static final PathMetaSort NameDesc
public static final PathMetaSort IsDirectoryDesc
public static final PathMetaSort CreationTimeDesc
public static final PathMetaSort LastModifiedTimeDesc
public static final PathMetaSort LastAccessTimeDesc
public static final PathMetaSort SizeDesc
public static PathMetaSort[] values()
for (PathMetaSort c : PathMetaSort.values()) System.out.println(c);
public static PathMetaSort valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null