sealed class SimpleFileFilter extends FileFilter
A FileFilter that selects files according the predicate acceptFunction
.
- Alphabetic
- By Inheritance
- SimpleFileFilter
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SimpleFileFilter(acceptFunction: (File) ⇒ Boolean)
Value Members
-
def
&&(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches both this filter and the givenfilter
.Constructs a filter that accepts a
File
if it matches both this filter and the givenfilter
.- Definition Classes
- FileFilter
-
def
--(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches this filter but does not match the givenfilter
.Constructs a filter that accepts a
File
if it matches this filter but does not match the givenfilter
.- Definition Classes
- FileFilter
-
final
def
accept(file: File): Boolean
- Definition Classes
- SimpleFileFilter → FileFilter
- val acceptFunction: (File) ⇒ Boolean
-
def
unary_-: FileFilter
Constructs a filter that accepts a
File
if it does not match this filter.Constructs a filter that accepts a
File
if it does not match this filter.- Definition Classes
- FileFilter
-
def
||(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches either this filter or the givenfilter
.Constructs a filter that accepts a
File
if it matches either this filter or the givenfilter
.- Definition Classes
- FileFilter