Trait/Object

akka.http.scaladsl.server

PathMatchers

Related Docs: object PathMatchers | package server

Permalink

trait PathMatchers extends AnyRef

Source
PathMatcher.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. PathMatchers
  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. All

Type Members

  1. abstract class NumberMatcher[T] extends PathMatcher1[T]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to any2stringadd[PathMatchers] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PathMatchers, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to ArrowAssoc[PathMatchers] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. val DoubleNumber: PathMatcher1[Double]

    Permalink

    A PathMatcher that matches and extracts a Double value.

    A PathMatcher that matches and extracts a Double value. The matched string representation is the pure decimal, optionally signed form of a double value, i.e. without exponent.

  7. object HexIntNumber extends NumberMatcher[Int]

    Permalink

    A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Int value.

    A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Int value. The matcher will not match 0 digits or a sequence of digits that would represent an Int value larger than Int.MaxValue.

  8. object HexLongNumber extends NumberMatcher[Long]

    Permalink

    A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Long value.

    A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Long value. The matcher will not match 0 digits or a sequence of digits that would represent an Long value larger than Long.MaxValue.

  9. object IntNumber extends NumberMatcher[Int]

    Permalink

    A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Int value.

    A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Int value. The matcher will not match 0 digits or a sequence of digits that would represent an Int value larger than Int.MaxValue.

  10. val JavaUUID: PathMatcher1[UUID]

    Permalink

    A PathMatcher that matches and extracts a java.util.UUID instance.

  11. object LongNumber extends NumberMatcher[Long]

    Permalink

    A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Long value.

    A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Long value. The matcher will not match 0 digits or a sequence of digits that would represent an Long value larger than Long.MaxValue.

  12. val Neutral: PathMatcher0

    Permalink

    A PathMatcher that always matches, doesn't consume anything and extracts nothing.

    A PathMatcher that always matches, doesn't consume anything and extracts nothing. Serves mainly as a neutral element in PathMatcher composition.

  13. object PathEnd extends PathMatcher0

    Permalink

    A PathMatcher that matches the very end of the requests URI path.

  14. object Remaining extends PathMatcher1[String]

    Permalink

    A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path as an (encoded!) String.

    A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path as an (encoded!) String. If you need access to the remaining unencoded elements of the path use the RemainingPath matcher!

  15. object RemainingPath extends PathMatcher1[Path]

    Permalink

    A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path.

  16. object Segment extends PathMatcher1[String]

    Permalink

    A PathMatcher that matches if the unmatched path starts with a path segment.

    A PathMatcher that matches if the unmatched path starts with a path segment. If so the path segment is extracted as a String.

  17. def Segments(min: Int, max: Int): PathMatcher1[List[String]]

    Permalink

    A PathMatcher that matches between min and max (both inclusively) path segments (separated by slashes) as a List[String].

    A PathMatcher that matches between min and max (both inclusively) path segments (separated by slashes) as a List[String]. If there are more than count segments present the remaining ones will be left unmatched. If the path has a trailing slash this slash will *not* be matched.

  18. def Segments(count: Int): PathMatcher1[List[String]]

    Permalink

    A PathMatcher that matches the given number of path segments (separated by slashes) as a List[String].

    A PathMatcher that matches the given number of path segments (separated by slashes) as a List[String]. If there are more than count segments present the remaining ones will be left unmatched. If the path has a trailing slash this slash will *not* be matched.

  19. val Segments: PathMatcher1[List[String]]

    Permalink

    A PathMatcher that matches up to 128 remaining segments as a List[String].

    A PathMatcher that matches up to 128 remaining segments as a List[String]. This can also be no segments resulting in the empty list. If the path has a trailing slash this slash will *not* be matched.

  20. object Slash extends PathMatcher0

    Permalink

    A PathMatcher that matches a single slash character ('/').

  21. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  22. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def ensuring(cond: (PathMatchers) ⇒ Boolean, msg: ⇒ Any): PathMatchers

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to Ensuring[PathMatchers] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: (PathMatchers) ⇒ Boolean): PathMatchers

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to Ensuring[PathMatchers] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. def ensuring(cond: Boolean, msg: ⇒ Any): PathMatchers

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to Ensuring[PathMatchers] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. def ensuring(cond: Boolean): PathMatchers

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to Ensuring[PathMatchers] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  29. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to StringFormat[PathMatchers] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  32. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. def nothingMatcher[L](implicit arg0: Tuple[L]): PathMatcher[L]

    Permalink

    A PathMatcher that never matches anything.

  36. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. def separateOnSlashes(string: String): PathMatcher0

    Permalink

    Converts a path string containing slashes into a PathMatcher that interprets slashes as path segment separators.

  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (PathMatchers, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PathMatchers to ArrowAssoc[PathMatchers] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from PathMatchers to any2stringadd[PathMatchers]

Inherited by implicit conversion StringFormat from PathMatchers to StringFormat[PathMatchers]

Inherited by implicit conversion Ensuring from PathMatchers to Ensuring[PathMatchers]

Inherited by implicit conversion ArrowAssoc from PathMatchers to ArrowAssoc[PathMatchers]

Path matchers

Ungrouped