trait FileFilter extends java.io.FileFilter

A java.io.FileFilter with additional methods for combining filters.

Linear Supertypes
java.io.FileFilter, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileFilter
  2. FileFilter
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def accept(arg0: File): Boolean
    Definition Classes
    FileFilter

Concrete Value Members

  1. def &&(filter: FileFilter): FileFilter

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

  2. def --(filter: FileFilter): FileFilter

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

  3. def unary_-: FileFilter

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

  4. def ||(filter: FileFilter): FileFilter

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