Packages

final class PathMatcher0 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. PathMatcher0
  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 PathMatcher0(toScala: PathMatcher[Unit])

Value Members

  1. def concat[T1, T2](next: PathMatcher2[T1, T2]): PathMatcher2[T1, T2]
  2. def concat[T](next: PathMatcher1[T]): PathMatcher1[T]
  3. def concat(next: PathMatcher0): PathMatcher0
  4. def concat(segment: String): PathMatcher0
  5. def invert: PathMatcher0
  6. def orElse(alternative: PathMatcher0): PathMatcher0
  7. def orElse(segment: String): PathMatcher0
  8. def repeat(min: Int, max: Int, separator: PathMatcher0): PathMatcher0
  9. def repeat(min: Int, max: Int): PathMatcher0
  10. def slash[T1, T2](next: PathMatcher2[T1, T2]): PathMatcher2[T1, T2]
  11. def slash[T](next: PathMatcher1[T]): PathMatcher1[T]
  12. def slash(next: PathMatcher0): PathMatcher0
  13. def slash(segment: String): PathMatcher0
  14. def slash(): PathMatcher0
  15. val toScala: PathMatcher[Unit]