Packages

sealed trait Route[Args] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Route
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def parse(path: Path): Option[(Args, Path)]

    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))

  2. abstract def url(args: Args): String

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &(params: Params.type): ParamsRoute[Args]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply(args: Args): String

    Generate URL for given arguments

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def parse(uri: String): Option[(Args, Path)]

    Parse given URI

    Parse given URI

    See also

    parse(path: Path)

  18. def parseArgs(uri: String): Option[Args]

    Parse arguments of given URI

    Parse arguments of given URI

    See also

    parseArgs(path: Path)

  19. def parseArgs(path: Path): Option[Args]

    Parse arguments of given Path

    Parse arguments of given Path

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

  20. def parseArgsStrict(uri: String): Option[Args]

    Parse arguments of given URI

    Parse arguments of given URI

    See also

    parseArgsStrict(path: Path)

  21. def parseArgsStrict(path: Path): Option[Args]

    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.

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def unapply(uri: String): Option[Args]

    Parse arguments for given URI

    Parse arguments for given URI

    See also

    parseArgs

  25. def unapply(path: Path): Option[Args]

    Parse arguments for given Path

    Parse arguments for given Path

    See also

    parseArgs

  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped