Uses of Interface
org.apache.commons.vfs2.FileFilter
-
Packages that use FileFilter Package Description org.apache.commons.vfs2 The public VFS API.org.apache.commons.vfs2.filter Implementations ofFileFilter. -
-
Uses of FileFilter in org.apache.commons.vfs2
Constructors in org.apache.commons.vfs2 with parameters of type FileFilter Constructor Description FileFilterSelector(FileFilter fileFilter)Constructs a new instance with a FileFilter. -
Uses of FileFilter in org.apache.commons.vfs2.filter
Classes in org.apache.commons.vfs2.filter that implement FileFilter Modifier and Type Class Description classAgeFileFilterFilters files based on a cutoff time, can filter either newer files or files equal to or older.classAndFileFilterA filter providing conditional AND logic across a list of file filters.classCanExecuteFileFilterThis filter acceptsFiles that can be executed.classCanReadFileFilterThis filter acceptsFiles that can be read.classCanWriteFileFilterThis filter acceptsFiles that can be written to.classDirectoryFileFilterThis filter acceptsFiles that are directories.classEmptyFileFilterThis filter accepts files or directories that are empty.classFalseFileFilterA file filter that always returns false.classFileFileFilterThis filter acceptsFiles that are files (not directories).classHiddenFileFilterThis filter acceptsFiles that are hidden.classNameFileFilterFilters file names for a certain name.classNotFileFilterThis filter produces a logical NOT of the filters specified.classOrFileFilterAFileFilterproviding conditional OR logic across a list of file filters.classPrefixFileFilterFilters file names for a certain prefix.classRegexFileFilterFilters files using supplied regular expression(s).classSizeFileFilterFilters files based on size, can filter either smaller files or files equal to or larger than a given threshold.classSizeRangeFileFilterFilter that accepts files whose size is >= minimum size and <= maximum size.classSuffixFileFilterFilters files based on the suffix (what the file name ends with).classSymbolicLinkFileFilterThis filter acceptsFiles that are symbolic links.classTrueFileFilterA file filter that always returns true.classWildcardFileFilterFilters files using the supplied wildcards.Fields in org.apache.commons.vfs2.filter declared as FileFilter Modifier and Type Field Description static FileFilterSymbolicLinkFileFilter. ACTUALSingleton instance of visible filter.static FileFilterCanExecuteFileFilter. CAN_EXECUTESingleton instance of executed filter.static FileFilterCanReadFileFilter. CAN_READSingleton instance of readable filter.static FileFilterCanWriteFileFilter. CAN_WRITESingleton instance of writable filter.static FileFilterCanExecuteFileFilter. CANNOT_EXECUTESingleton instance of not executed filter.static FileFilterCanReadFileFilter. CANNOT_READSingleton instance of not readable filter.static FileFilterCanWriteFileFilter. CANNOT_WRITESingleton instance of not writable filter.static FileFilterDirectoryFileFilter. DIRECTORYSingleton instance of directory filter.static FileFilterEmptyFileFilter. EMPTYSingleton instance of empty filter.static FileFilterFalseFileFilter. FALSEDeprecated.static FileFilterFileFileFilter. FILESingleton instance of file filter.static FileFilterHiddenFileFilter. HIDDENSingleton instance of hidden filter.static FileFilterFalseFileFilter. INSTANCESingleton instance of false filter.static FileFilterTrueFileFilter. INSTANCESingleton instance of true filter.static FileFilterEmptyFileFilter. NOT_EMPTYSingleton instance of not-empty filter.static FileFilterCanReadFileFilter. READ_ONLYSingleton instance of read-only filter.static FileFilterSymbolicLinkFileFilter. SYMBOLICSingleton instance of hidden filter.static FileFilterTrueFileFilter. TRUEDeprecated.static FileFilterHiddenFileFilter. VISIBLESingleton instance of visible filter.Methods in org.apache.commons.vfs2.filter that return types with arguments of type FileFilter Modifier and Type Method Description java.util.List<FileFilter>AndFileFilter. getFileFilters()java.util.List<FileFilter>ConditionalFileFilter. getFileFilters()Returns this conditional file filter's list of file filters.java.util.List<FileFilter>OrFileFilter. getFileFilters()Methods in org.apache.commons.vfs2.filter with parameters of type FileFilter Modifier and Type Method Description voidAndFileFilter. addFileFilter(FileFilter fileFilter)voidConditionalFileFilter. addFileFilter(FileFilter fileFilter)Adds the specified file filter to the list of file filters at the end of the list.voidOrFileFilter. addFileFilter(FileFilter fileFilter)booleanAndFileFilter. removeFileFilter(FileFilter fileFilter)booleanConditionalFileFilter. removeFileFilter(FileFilter fileFilter)Removes the specified file filter.booleanOrFileFilter. removeFileFilter(FileFilter fileFilter)Method parameters in org.apache.commons.vfs2.filter with type arguments of type FileFilter Modifier and Type Method Description voidAndFileFilter. setFileFilters(java.util.List<FileFilter> fileFilters)voidConditionalFileFilter. setFileFilters(java.util.List<FileFilter> fileFilters)Sets the list of file filters, replacing any previously configured file filters on this filter.voidOrFileFilter. setFileFilters(java.util.List<FileFilter> fileFilters)Constructors in org.apache.commons.vfs2.filter with parameters of type FileFilter Constructor Description AndFileFilter(FileFilter... filters)Constructs a new file filter that ANDs the result of other filters.NotFileFilter(FileFilter filter)Constructs a new file filter that NOTs the result of another filter.OrFileFilter(FileFilter... filters)Constructs a new file filter that ORs the result of other filters.Constructor parameters in org.apache.commons.vfs2.filter with type arguments of type FileFilter Constructor Description AndFileFilter(java.util.List<FileFilter> fileFilters)Constructs a new instance ofAndFileFilterwith the specified list of filters.OrFileFilter(java.util.List<FileFilter> fileFilters)Constructs a new instance ofOrFileFilterwith the specified filters.
-