Uses of Class
bb.io.filefilter.FileMode

Packages that use FileMode
bb.io.filefilter Provides classes that may be used for file filtering. 
 

Uses of FileMode in bb.io.filefilter
 

Fields in bb.io.filefilter declared as FileMode
private  FileMode BaseFilter.fileMode
           
 

Methods in bb.io.filefilter that return FileMode
 FileMode BaseFilter.getFileMode()
          Returns BaseFilter.fileMode.
static FileMode FileMode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FileMode[] FileMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in bb.io.filefilter with parameters of type FileMode
BaseFilter.UnitTest.TestFilter(FileMode fileMode)
           
BaseFilter.UnitTest.TestFilter(FileMode fileMode, DirectoryMode directoryMode, OtherMode otherMode, PartMode partMode, String textExpected)
           
BaseFilter(FileMode fileMode, DirectoryMode directoryMode)
          Calls this(fileMode, directoryMode, null).
BaseFilter(FileMode fileMode, DirectoryMode directoryMode, FileFilterListener listener)
          Calls this(fileMode, directoryMode, OtherMode.reject, PartMode.name, listener).
BaseFilter(FileMode fileMode, DirectoryMode directoryMode, OtherMode otherMode, PartMode partMode)
          Calls this(fileMode, directoryMode, OtherMode.reject, PartMode.name, null).
BaseFilter(FileMode fileMode, DirectoryMode directoryMode, OtherMode otherMode, PartMode partMode, FileFilterListener listener)
          Constructs a new BaseFilter instance.
RegexFilter(Set<Pattern> patterns, FileMode fileMode, DirectoryMode directoryMode)
          Calls this(patterns, fileMode, directoryMode, OtherMode.reject, PartMode.name).
RegexFilter(Set<Pattern> patterns, FileMode fileMode, DirectoryMode directoryMode, OtherMode otherMode, PartMode partMode)
          Constructs a new RegexFilter instance.
SuffixFilter(Set<String> suffixes, FileMode fileMode, DirectoryMode directoryMode)
          Calls this(suffixes, fileMode, directoryMode, OtherMode.reject, PartMode.name).
SuffixFilter(Set<String> suffixes, FileMode fileMode, DirectoryMode directoryMode, OtherMode otherMode, PartMode partMode)
          Constructs a new SuffixFilter instance.