Packages

c

sbt.nio.file.Glob

PathFilterOps

implicit final class PathFilterOps extends AnyVal with PathFilterExtensions

Provides extension methods to Glob that allows it to create combined sbt.nio.file.PathFilter instances with && and ||.

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

Instance Constructors

  1. new PathFilterOps(glob: Glob)

    glob

    the Glob to extend

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
    PathFilterOps → 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. val glob: Glob
  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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
    PathFilterOps → 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
    PathFilterOps → PathFilterExtensions

Inherited from PathFilterExtensions

Inherited from AnyVal

Inherited from Any

Ungrouped