public final class Selectors extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
static FileSelector |
EXCLUDE_SELF |
A
FileSelector that selects all the descendants of the base folder, but does not select the base folder
itself. |
static FileSelector |
SELECT_ALL |
A
FileSelector that selects the base file/folder, plus all its descendants. |
static FileSelector |
SELECT_CHILDREN |
A
FileSelector that selects only the direct children of the base folder. |
static FileSelector |
SELECT_FILES |
A
FileSelector that only files (not folders). |
static FileSelector |
SELECT_FOLDERS |
A
FileSelector that only folders (not files). |
static FileSelector |
SELECT_SELF |
A
FileSelector that selects only the base file/folder. |
static FileSelector |
SELECT_SELF_AND_CHILDREN |
A
FileSelector that selects the base file/folder and its direct children. |
public static final FileSelector SELECT_SELF
FileSelector
that selects only the base file/folder.public static final FileSelector SELECT_SELF_AND_CHILDREN
FileSelector
that selects the base file/folder and its direct children.public static final FileSelector SELECT_CHILDREN
FileSelector
that selects only the direct children of the base folder.public static final FileSelector EXCLUDE_SELF
FileSelector
that selects all the descendants of the base folder, but does not select the base folder
itself.public static final FileSelector SELECT_FILES
FileSelector
that only files (not folders).public static final FileSelector SELECT_FOLDERS
FileSelector
that only folders (not files).public static final FileSelector SELECT_ALL
FileSelector
that selects the base file/folder, plus all its descendants.