Packages

c

akka.http.javadsl.server

PathMatcher5

final class PathMatcher5[T1, T2, T3, T4, T5] extends AnyRef

A PathMatcher tries to match a prefix of a given string and returns either a PathMatcher.Matched instance if matched, otherwise PathMatchers.Unmatched.

Source
JavaPathMatchers.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PathMatcher5
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PathMatcher5(toScala: PathMatcher[(T1, T2, T3, T4, T5)])

Value Members

  1. def concat[N1, N2](next: PathMatcher2[N1, N2]): PathMatcher7[T1, T2, T3, T4, T5, N1, N2]
  2. def concat[N](next: PathMatcher1[N]): PathMatcher6[T1, T2, T3, T4, T5, N]
  3. def concat(next: PathMatcher0): PathMatcher5[T1, T2, T3, T4, T5]
  4. def concat(segment: String): PathMatcher5[T1, T2, T3, T4, T5]
  5. def invert: PathMatcher0
  6. def orElse(alternative: PathMatcher5[T1, T2, T3, T4, T5]): PathMatcher5[T1, T2, T3, T4, T5]
  7. def slash[N1, N2](next: PathMatcher2[N1, N2]): PathMatcher7[T1, T2, T3, T4, T5, N1, N2]
  8. def slash[N](next: PathMatcher1[N]): PathMatcher6[T1, T2, T3, T4, T5, N]
  9. def slash(next: PathMatcher0): PathMatcher5[T1, T2, T3, T4, T5]
  10. def slash(segment: String): PathMatcher5[T1, T2, T3, T4, T5]
  11. def slash(): PathMatcher5[T1, T2, T3, T4, T5]
  12. val toScala: PathMatcher[(T1, T2, T3, T4, T5)]