abstract class PathMatcher[L] extends (Path) => Matching[L]
A PathMatcher tries to match a prefix of a given string and returns either a PathMatcher.Matched instance if matched, otherwise PathMatcher.Unmatched.
- Self Type
- PathMatcher[L]
- Source
- PathMatcher.scala
- Alphabetic
- By Inheritance
- PathMatcher
- Function1
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def /[R](other: PathMatcher[R])(implicit join: Join[L, R]): PathMatcher[Out]
Alias for slash.
- def /: PathMatcher[L]
Alias for slash.
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def andThen[A](g: (Matching[L]) => A): (Path) => A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def append[R](other: PathMatcher[R])(implicit join: Join[L, R]): PathMatcher[Out]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def compose[A](g: (A) => Path): (A) => Matching[L]
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit val ev: Tuple[L]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def or[R >: L](other: PathMatcher[_ <: R])(implicit arg0: Tuple[R]): PathMatcher[R]
- def repeat(min: Int, max: Int, separator: PathMatcher0 = PathMatchers.Neutral)(implicit lift: Lift[L, List]): PathMatcher[Out]
Turns this
PathMatcherinto one that matches a number of times (with the given separator) and potentially extracts aListof the underlying matcher's extractions.Turns this
PathMatcherinto one that matches a number of times (with the given separator) and potentially extracts aListof the underlying matcher's extractions. If less thanminapplications of the underlying matcher have succeeded the produced matcher fails, otherwise it matches up to the givenmaxnumber of applications. Note that it won't fail even if more thanmaxapplications could succeed! The "surplus" path elements will simply be left unmatched.The result type depends on the type of the underlying matcher:
If a `matcher` is of type then `matcher.repeat(...)` is of type `PathMatcher0` `PathMatcher0` `PathMatcher1[T]` `PathMatcher1[List[T]` `PathMatcher[L :Tuple]` `PathMatcher[List[L]]` - def repeat(count: Int, separator: PathMatcher0)(implicit lift: Lift[L, List]): PathMatcher[Out]
Same as
repeat(min = count, max = count, separator = separator). - def repeat(count: Int)(implicit lift: Lift[L, List]): PathMatcher[Out]
Same as
repeat(min = count, max = count). - def slash[R](other: PathMatcher[R])(implicit join: Join[L, R]): PathMatcher[Out]
- def slash: PathMatcher[L]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tflatMap[R](f: (L) => Option[R])(implicit arg0: Tuple[R]): PathMatcher[R]
- def tmap[R](f: (L) => R)(implicit arg0: Tuple[R]): PathMatcher[R]
- def toString(): String
- Definition Classes
- Function1 → AnyRef → Any
- def transform[R](f: (Matching[L]) => Matching[R])(implicit arg0: Tuple[R]): PathMatcher[R]
- def unary_!: PathMatcher0
Operator alternative to PathMatchers.not
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def |[R >: L](other: PathMatcher[_ <: R])(implicit arg0: Tuple[R]): PathMatcher[R]
Alias for or.
- def ~[R](other: PathMatcher[R])(implicit join: Join[L, R]): PathMatcher[Out]
Alias for append.