final class PrefixFilter extends NameFilter
- Alphabetic
- By Inheritance
- PrefixFilter
- NameFilter
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new PrefixFilter(prefix: 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
- PrefixFilter → 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
-
def
equals(o: Any): Boolean
- Definition Classes
- PrefixFilter → AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- PrefixFilter → AnyRef → Any
- val prefix: String
-
def
toString(): String
- Definition Classes
- PrefixFilter → 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