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
- by EnhancedPathMatcher
- by PathMatcher1Ops
- by EnhancedPathMatcher
- by PathMatcher1Ops
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Concrete Value Members
- def /[R](other: PathMatcher[R])(implicit join: Join[L, R]): PathMatcher[Out]
Alias for slash.
- def /: PathMatcher[L]
Alias for slash.
- 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]
- def compose[A](g: (A) => Path): (A) => Matching[L]
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- implicit val ev: Tuple[L]
- def flatMap[R](f: (T) => Option[R]): PathMatcher1[R]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toPathMatcher1Ops[T] performed by method PathMatcher1Ops in akka.http.scaladsl.server.PathMatcher.This conversion will take place only if L is (T) (L =:= (T)).
- Definition Classes
- PathMatcher1Ops
- def flatMap[R](f: (T) => Option[R]): PathMatcher1[R]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toPathMatcher1Ops[T] performed by method PathMatcher1Ops in akka.http.scaladsl.server.PathMatcher.This conversion will take place only if L is (T) (L =:= (T)).
- Definition Classes
- PathMatcher1Ops
- def map[R](f: (T) => R): PathMatcher1[R]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toPathMatcher1Ops[T] performed by method PathMatcher1Ops in akka.http.scaladsl.server.PathMatcher.This conversion will take place only if L is (T) (L =:= (T)).
- Definition Classes
- PathMatcher1Ops
- def map[R](f: (T) => R): PathMatcher1[R]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toPathMatcher1Ops[T] performed by method PathMatcher1Ops in akka.http.scaladsl.server.PathMatcher.This conversion will take place only if L is (T) (L =:= (T)).
- Definition Classes
- PathMatcher1Ops
- 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
PathMatcher
into one that matches a number of times (with the given separator) and potentially extracts aList
of the underlying matcher's extractions.Turns this
PathMatcher
into one that matches a number of times (with the given separator) and potentially extracts aList
of the underlying matcher's extractions. If less thanmin
applications of the underlying matcher have succeeded the produced matcher fails, otherwise it matches up to the givenmax
number of applications. Note that it won't fail even if more thanmax
applications 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]
- 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
- 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.
Shadowed Implicit Value Members
- def ?(implicit lift: Lift[L, Option]): PathMatcher[Out]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toEnhancedPathMatcher[L] performed by method EnhancedPathMatcher in akka.http.scaladsl.server.PathMatcher.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(pathMatcher: EnhancedPathMatcher[L]).?(lift)
- Definition Classes
- EnhancedPathMatcher
- def ?(implicit lift: Lift[L, Option]): PathMatcher[Out]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toEnhancedPathMatcher[L] performed by method EnhancedPathMatcher in akka.http.scaladsl.server.PathMatcher.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(pathMatcher: EnhancedPathMatcher[L]).?(lift)
- Definition Classes
- EnhancedPathMatcher
- def optional(implicit lift: Lift[L, Option]): PathMatcher[Out]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toEnhancedPathMatcher[L] performed by method EnhancedPathMatcher in akka.http.scaladsl.server.PathMatcher.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(pathMatcher: EnhancedPathMatcher[L]).optional(lift)
- Definition Classes
- EnhancedPathMatcher
- def optional(implicit lift: Lift[L, Option]): PathMatcher[Out]
- Implicit
- This member is added by an implicit conversion from PathMatcher[L] toEnhancedPathMatcher[L] performed by method EnhancedPathMatcher in akka.http.scaladsl.server.PathMatcher.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(pathMatcher: EnhancedPathMatcher[L]).optional(lift)
- Definition Classes
- EnhancedPathMatcher