Packages

implicit final class Ops extends AnyVal with PathFilterExtensions

Provides extension methods for combining or negating PathFilter instances or or other filter types that can be safely converted (see sbt.io.DirectoryFilter and sbt.io.HiddenFileFilter).

Linear Supertypes
PathFilterExtensions, AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ops
  2. PathFilterExtensions
  3. AnyVal
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Ops(pathFilter: PathFilter)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def &&(other: PathFilter): PathFilter

    Combines this filter with a sbt.nio.file.PathFilter to produce a combined filter that returns true only if both filters accept the path.

    Combines this filter with a sbt.nio.file.PathFilter to produce a combined filter that returns true only if both filters accept the path.

    other

    the other sbt.nio.file.PathFilter

    returns

    the sbt.nio.file.PathFilter representing both filters combined by the && operation

    Definition Classes
    Ops → PathFilterExtensions
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. val pathFilter: PathFilter
  9. def toString(): String
    Definition Classes
    Any
  10. def unary_!: PathFilter

    Creates a new sbt.nio.file.PathFilter what accepts a (Path, FileAttributes) pair only if this filter does not accept it.

    Creates a new sbt.nio.file.PathFilter what accepts a (Path, FileAttributes) pair only if this filter does not accept it.

    returns

    the negated sbt.nio.file.PathFilter corresponding to this filter

    Definition Classes
    Ops → PathFilterExtensions
  11. def ||(other: PathFilter): PathFilter

    Combines this filter with a sbt.nio.file.PathFilter to produce a combined filter that returns true either if this or the other sbt.nio.file.PathFilter accept the path.

    Combines this filter with a sbt.nio.file.PathFilter to produce a combined filter that returns true either if this or the other sbt.nio.file.PathFilter accept the path.

    other

    the other sbt.nio.file.PathFilter

    returns

    the sbt.nio.file.PathFilter representing both filters combined by the && operation

    Definition Classes
    Ops → PathFilterExtensions

Inherited from PathFilterExtensions

Inherited from AnyVal

Inherited from Any

Ungrouped