Package org.apache.commons.vfs
Interface Selectors
public interface Selectors
Several standard file selectors.
- Version:
- $Revision: 480428 $ $Date: 2006-11-29 07:15:24 +0100 (Wed, 29 Nov 2006) $
- Author:
- Adam Murdoch
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final FileSelectorAFileSelectorthat selects all the descendents of the base folder, but does not select the base folder itself.static final FileSelectorAFileSelectorthat selects the base file/folder, plus all its descendents.static final FileSelectorAFileSelectorthat selects only the direct children of the base folder.static final FileSelectorAFileSelectorthat only files (not folders).static final FileSelectorAFileSelectorthat only folders (not files).static final FileSelectorAFileSelectorthat selects only the base file/folder.static final FileSelectorAFileSelectorthat selects the base file/folder and its direct children.
-
Field Details
-
SELECT_SELF
AFileSelectorthat selects only the base file/folder. -
SELECT_SELF_AND_CHILDREN
AFileSelectorthat selects the base file/folder and its direct children. -
SELECT_CHILDREN
AFileSelectorthat selects only the direct children of the base folder. -
EXCLUDE_SELF
AFileSelectorthat selects all the descendents of the base folder, but does not select the base folder itself. -
SELECT_FILES
AFileSelectorthat only files (not folders). -
SELECT_FOLDERS
AFileSelectorthat only folders (not files). -
SELECT_ALL
AFileSelectorthat selects the base file/folder, plus all its descendents.
-