org.apache.commons.vfs
Class Selectors

java.lang.Object
  extended by org.apache.commons.vfs.Selectors

public final class Selectors
extends java.lang.Object

Several standard file selectors.

Version:
$Revision: 764356 $ $Date: 2009-04-13 06:06:01 +0200 (Mo, 13. Apr 2009) $
Author:
Adam Murdoch

Field Summary
static FileSelector EXCLUDE_SELF
          A FileSelector that selects all the descendents 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 descendents.
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.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SELECT_SELF

public static final FileSelector SELECT_SELF
A FileSelector that selects only the base file/folder.


SELECT_SELF_AND_CHILDREN

public static final FileSelector SELECT_SELF_AND_CHILDREN
A FileSelector that selects the base file/folder and its direct children.


SELECT_CHILDREN

public static final FileSelector SELECT_CHILDREN
A FileSelector that selects only the direct children of the base folder.


EXCLUDE_SELF

public static final FileSelector EXCLUDE_SELF
A FileSelector that selects all the descendents of the base folder, but does not select the base folder itself.


SELECT_FILES

public static final FileSelector SELECT_FILES
A FileSelector that only files (not folders).


SELECT_FOLDERS

public static final FileSelector SELECT_FOLDERS
A FileSelector that only folders (not files).


SELECT_ALL

public static final FileSelector SELECT_ALL
A FileSelector that selects the base file/folder, plus all its descendents.



Copyright © 2002-2011 Apache Software Foundation. All Rights Reserved.