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).
- Alphabetic
- By Inheritance
- Ops
- PathFilterExtensions
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Ops(pathFilter: PathFilter)
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
- Ops → 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
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val pathFilter: PathFilter
-
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
- Ops → 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
- Ops → PathFilterExtensions