sealed trait RelativeGlob extends Glob
A specialization of Glob that applies only to relative paths. RelativeGlob instances
can always be combined with the /
operator whereas general Glob
instances cannot because they
may correspond to an absolute file path:
val combined = Glob("/foo/bar") / RelativeGlob("
- Alphabetic
- By Inheritance
- RelativeGlob
- Glob
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
/(regex: Regex): RelativeGlob
Appends a relative glob specified by a regex pattern to an existing Glob.
Appends a relative glob specified by a regex pattern to an existing Glob. For example:
val glob = Glob("foo/bar") val scalaSources = glob / "^[^.].*\\.scala".r scalaSources.matches(Paths.get("foo/bar/Foo.scala")) // true scalaSources.matches(Paths.get("foo/bar/.hidden.scala")) // false
Note that it is not possible to specify a recursive glob this way because
**
is not valid in regex. To make a recursive glob, combine with RecursiveGlob:val scalaSources = Glob("foo/bar") / ** / "^[^.].*\\.scala".r scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/Foo.scala")) // true scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/.hidden.scala")) // false
On Windows,
\
will be treated as a regex escape character but/
will be treated as a path separator.- regex
the pattern to apply
- returns
a Glob with the new RelativeGlob appended to the query.
-
def
/(relativeGlob: RelativeGlob): RelativeGlob
Appends an additional RelativeGlob to this RelativeGlob:
Appends an additional RelativeGlob to this RelativeGlob:
val glob = Glob("foo/bar") val scalaSources = glob / ** / "*.scala" scalaSources.matches(Paths.get("foo/bar/Foo.scala")) // true scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/Bar.scala")) // true scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/Baz.java")) // false
- relativeGlob
the additional query string to parse and append
- returns
a Glob with the new RelativeGlob appended to the query.
-
def
/(relativeGlob: String): RelativeGlob
Appends additional components to this RelativeGlob:
Appends additional components to this RelativeGlob:
val glob = Glob("foo/bar") val scalaSources = glob / "**<code>/</code>*.scala" scalaSources.matches(Paths.get("foo/bar/Foo.scala")) // true scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/Bar.scala")) // true scalaSources.matches(Paths.get("foo/bar/baz/fizz/buzz/Baz.java")) // false
- relativeGlob
the additional query string to parse and append
- returns
a Glob with the new RelativeGlob appended to the query.
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()