NotNameFilter

final class NotNameFilter(val fileFilter: NameFilter) extends NameFilter
trait FileFilter
class Object
trait Matchable
class Any

Value members

Concrete methods

override def accept(name: String): Boolean
Definition Classes

Inherited methods

def &(filter: NameFilter): NameFilter

Constructs a filter that accepts a String if it matches both this filter and the given filter.

Constructs a filter that accepts a String if it matches both this filter and the given filter.

Inherited from:
NameFilter
def &&(filter: FileFilter): FileFilter

Constructs a filter that accepts a File if it matches both this filter and the given filter.

Constructs a filter that accepts a File if it matches both this filter and the given filter.

Inherited from:
FileFilter
def -(filter: NameFilter): NameFilter

Constructs a filter that accepts a String if it matches this filter but not the given filter.

Constructs a filter that accepts a String if it matches this filter but not the given filter.

Inherited from:
NameFilter
def --(filter: FileFilter): FileFilter

Constructs a filter that accepts a File if it matches this filter but does not match the given filter.

Constructs a filter that accepts a File if it matches this filter but does not match the given filter.

Inherited from:
FileFilter
final def accept(file: File): Boolean

Accepts File if its getName method is accepted by this filter.

Accepts File if its getName method is accepted by this filter.

Inherited from:
NameFilter
override def equals(o: Any): Boolean
Definition Classes
AbstractNotFilter -> Any
Inherited from:
AbstractNotFilter (hidden)
override def hashCode: Int
Definition Classes
AbstractNotFilter -> Any
Inherited from:
AbstractNotFilter (hidden)
override def toString: String
Definition Classes
AbstractNotFilter -> Any
Inherited from:
AbstractNotFilter (hidden)
override 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
Inherited from:
NameFilter
def |(filter: NameFilter): NameFilter

Constructs a filter that accepts a String if it matches either this filter or the given filter.

Constructs a filter that accepts a String if it matches either this filter or the given filter.

Inherited from:
NameFilter
def ||(filter: FileFilter): FileFilter

Constructs a filter that accepts a File if it matches either this filter or the given filter.

Constructs a filter that accepts a File if it matches either this filter or the given filter.

Inherited from:
FileFilter

Concrete fields

override val fileFilter: NameFilter