final class ExactFilter extends NameFilter
A NameFilter that accepts a name if it is exactly equal to matchName
.
- Alphabetic
- By Inheritance
- ExactFilter
- NameFilter
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ExactFilter(matchName: String)
Value Members
-
def
&(filter: NameFilter): NameFilter
Constructs a filter that accepts a
String
if it matches both this filter and the givenfilter
.Constructs a filter that accepts a
String
if it matches both this filter and the givenfilter
.- Definition Classes
- NameFilter
-
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: NameFilter): NameFilter
Constructs a filter that accepts a
String
if it matches this filter but not the givenfilter
.Constructs a filter that accepts a
String
if it matches this filter but not the givenfilter
.- Definition Classes
- NameFilter
-
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
-
def
accept(name: String): Boolean
Returns
true
to include thename
,false
to exclude it.Returns
true
to include thename
,false
to exclude it.- Definition Classes
- ExactFilter → NameFilter
-
final
def
accept(file: File): Boolean
Accepts
File
if itsgetName
method is accepted by this filter.Accepts
File
if itsgetName
method is accepted by this filter.- Definition Classes
- NameFilter → FileFilter
- val matchName: String
-
def
toString(): String
- Definition Classes
- ExactFilter → AnyRef → Any
-
def
unary_-: NameFilter
Constructs a filter that accepts a
String
if it does not match this filter.Constructs a filter that accepts a
String
if it does not match this filter.- Definition Classes
- NameFilter → FileFilter
-
def
|(filter: NameFilter): NameFilter
Constructs a filter that accepts a
String
if it matches either this filter or the givenfilter
.Constructs a filter that accepts a
String
if it matches either this filter or the givenfilter
.- Definition Classes
- NameFilter
-
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