c

sbt.io

SimpleFileFilter

sealed class SimpleFileFilter extends FileFilter

A FileFilter that selects files according the predicate acceptFunction.

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

Instance Constructors

  1. new SimpleFileFilter(acceptFunction: (File) ⇒ Boolean)

Value Members

  1. 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.

    Definition Classes
    FileFilter
  2. 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.

    Definition Classes
    FileFilter
  3. final def accept(file: File): Boolean
    Definition Classes
    SimpleFileFilter → FileFilter
  4. val acceptFunction: (File) ⇒ Boolean
  5. def unary_-: FileFilter

    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.

    Definition Classes
    FileFilter
  6. 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.

    Definition Classes
    FileFilter