trait FileFilter extends java.io.FileFilter
A java.io.FileFilter
with additional methods for combining filters.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
accept(arg0: File): Boolean
- Definition Classes
- FileFilter
Concrete Value Members
-
def
&&(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches both this filter and the givenfilter
. -
def
--(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches this filter but does not match the givenfilter
. -
def
unary_-: FileFilter
Constructs a filter that accepts a
File
if it does not match this filter. -
def
||(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches either this filter or the givenfilter
.