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 ||
.
- Alphabetic
- By Inheritance
- PathFilterOps
- PathFilterExtensions
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
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
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- val glob: Glob
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
toString(): String
- Definition Classes
- Any
-
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
-
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