NothingFilter

case object NothingFilter extends NameFilter

A NameFilter that accepts nothing. That is, accept always returns false.

trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait FileFilter
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels = EmptyTuple
Inherited from:
Singleton
type MirroredElemTypes = EmptyTuple
Inherited from:
Singleton
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror
type MirroredMonoType = Singleton
Inherited from:
Singleton
type MirroredType = Singleton
Inherited from:
Singleton

Value members

Concrete methods

def accept(name: String): Boolean
override def unary_-: NameFilter
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
def fromProduct(p: Product): MirroredMonoType
Inherited from:
Singleton
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
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