Packages

c

sbt.io.FileFilter

FileFilterOps

implicit final class FileFilterOps extends AnyVal

Adds an extension method to convert a sbt.io.FileFilter to a sbt.nio.file.PathFilter.

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

Instance Constructors

  1. new FileFilterOps(fileFilter: FileFilter)

    fileFilter

    the fileFilter to convert

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val fileFilter: FileFilter
  6. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  7. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  8. def toNio: PathFilter

    Converts a sbt.io.FileFilter to a sbt.nio.file.PathFilter that should accept same the same paths.

    Converts a sbt.io.FileFilter to a sbt.nio.file.PathFilter that should accept same the same paths. This can be used for any sbt.io.FileFilter but may also be used to disambiguate the && and || methods for DirectoryFilter, HiddenFileFilter and RegularFileFilter:

    val pathFilter: PathFilter = DirectoryFilter || "**<code>/<code>*.txt"
    returns

    the transformed sbt.nio.file.PathFilter.

  9. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped