c

sbt.io

OrNameFilter

final class OrNameFilter extends AbstractOrFilter with NameFilter

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

Instance Constructors

  1. new OrNameFilter(left: NameFilter, right: NameFilter)

Value Members

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

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

    Definition Classes
    NameFilter
  4. 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
  5. def accept(name: String): Boolean

    Returns true to include the name, false to exclude it.

    Returns true to include the name, false to exclude it.

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

    Definition Classes
    NameFilter → FileFilter
  7. def equals(o: Any): Boolean
    Definition Classes
    AbstractOrFilter → AnyRef → Any
  8. def hashCode(): Int
    Definition Classes
    AbstractOrFilter → AnyRef → Any
  9. val left: NameFilter
    Definition Classes
    OrNameFilter → AbstractOrFilter
  10. val right: NameFilter
    Definition Classes
    OrNameFilter → AbstractOrFilter
  11. def toString(): String
    Definition Classes
    AbstractOrFilter → AnyRef → Any
  12. 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
    NameFilterFileFilter
  13. 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.

    Definition Classes
    NameFilter
  14. 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