Packages

final class PathMatcher3[T1, T2, T3] 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. PathMatcher3
  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 PathMatcher3(toScala: PathMatcher[(T1, T2, T3)])

Value Members

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