AndFilter

final class AndFilter(val left: FileFilter, val right: FileFilter)
trait FileFilter
class Object
trait Matchable
class Any

Value members

Concrete methods

override def accept(pathname: File): Boolean
Definition Classes
FileFilter

Inherited methods

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

Constructs a filter that accepts a File if it does not match this filter.

Constructs a filter that accepts a File if it does not match this filter.

Inherited from:
FileFilter
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 left: FileFilter
override val right: FileFilter