Class

trail.Route

ParamRoute0

Related Doc: package Route

Permalink

case class ParamRoute0[P](route: Route[Unit], param: Param[P]) extends Route[P] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Route[P], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParamRoute0
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Route
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParamRoute0(route: Route[Unit], param: Param[P])

    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 &[T](param: Param[T]): ParamRoute[P, T]

    Permalink
  4. def &(params: Params.type): ParamsRoute[P]

    Permalink
    Definition Classes
    Route
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def apply(args: P): String

    Permalink

    Generate URL for given arguments

    Generate URL for given arguments

    Definition Classes
    Route
  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. val param: Param[P]

    Permalink
  17. def parse(path: Path): Option[(P, Path)]

    Permalink

    Parse given Path

    Parse given Path

    If successful, the result contains the parsed arguments as well as the updated Path object. If the path was fully parsed, all of its fields should be empty.

    Use parseArgs or parseArgsStrict if you are only interested in the parsed arguments.

    returns

    Some((parsed arguments, updated path))

    Definition Classes
    ParamRoute0Route
  18. def parse(uri: String): Option[(P, Path)]

    Permalink

    Parse given URI

    Parse given URI

    Definition Classes
    Route
    See also

    parse(path: Path)

  19. def parseArgs(uri: String): Option[P]

    Permalink

    Parse arguments of given URI

    Parse arguments of given URI

    Definition Classes
    Route
    See also

    parseArgs(path: Path)

  20. def parseArgs(path: Path): Option[P]

    Permalink

    Parse arguments of given Path

    Parse arguments of given Path

    This returns None if path contains additional trailing elements missing from the route.

    Definition Classes
    Route
  21. def parseArgsStrict(uri: String): Option[P]

    Permalink

    Parse arguments of given URI

    Parse arguments of given URI

    Definition Classes
    Route
    See also

    parseArgsStrict(path: Path)

  22. def parseArgsStrict(path: Path): Option[P]

    Permalink

    Parse arguments of given Path

    Parse arguments of given Path

    Same behaviour as parseArgs. It does not permit any unspecified path elements, arguments or a fragment.

    Definition Classes
    Route
  23. val route: Route[Unit]

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

    Permalink
    Definition Classes
    AnyRef
  25. def unapply(uri: String): Option[P]

    Permalink

    Parse arguments for given URI

    Parse arguments for given URI

    Definition Classes
    Route
    See also

    parseArgs

  26. def unapply(path: Path): Option[P]

    Permalink

    Parse arguments for given Path

    Parse arguments for given Path

    Definition Classes
    Route
    See also

    parseArgs

  27. def url(value: P): String

    Permalink
    Definition Classes
    ParamRoute0Route
  28. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Route[P]

Inherited from AnyRef

Inherited from Any

Ungrouped