Packages

object UriTemplate extends Serializable

Source
UriTemplate.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UriTemplate
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait ExpansionType extends AnyRef

    URI Templates are similar to a macro language with a fixed set of macro definitions: the expression type determines the expansion process.

    URI Templates are similar to a macro language with a fixed set of macro definitions: the expression type determines the expansion process.

    The default expression type is simple string expansion (Level 1), wherein a single named variable is replaced by its value as a string after pct-encoding any characters not in the set of unreserved URI characters (Section 1.5).

    Level 2 templates add the plus ("+") operator, for expansion of values that are allowed to include reserved URI characters (Section 1.5), and the crosshatch ("#") operator for expansion of fragment identifiers.

    Level 3 templates allow multiple variables per expression, each separated by a comma, and add more complex operators for dot-prefixed labels, slash-prefixed path segments, semicolon-prefixed path parameters, and the form-style construction of a query syntax consisting of name=value pairs that are separated by an ampersand character.

  2. type Fragment = List[FragmentDef]
  3. sealed trait FragmentDef extends AnyRef
  4. final case class FragmentElm(value: String) extends FragmentDef with Product with Serializable

    Static fragment element

  5. final case class MultiFragmentExp(names: List[String]) extends FragmentDef with Product with Serializable

    Fragment expansion with multiple variables, crosshatch-prefixed (Section 3.2.4)

  6. final case class ParamContExp(names: List[String]) extends QueryExp with Product with Serializable

    Form-style query continuation (Section 3.2.9)

  7. final case class ParamElm(name: String, values: List[String]) extends QueryDef with Product with Serializable

    Static query parameter element

  8. final case class ParamExp(names: List[String]) extends QueryExp with Product with Serializable

    Form-style query, ampersand-separated (Section 3.2.8)

  9. final case class ParamReservedExp(name: String, variables: List[String]) extends QueryDef with Product with Serializable

    Reserved string expansion for query parameter

  10. final case class ParamVarExp(name: String, variables: List[String]) extends QueryDef with Product with Serializable

    Simple string expansion for query parameter

  11. type Path = List[PathDef]
  12. sealed trait PathDef extends AnyRef
  13. final case class PathElm(value: String) extends PathDef with Product with Serializable

    Static path element

  14. final case class PathExp(names: List[String]) extends PathDef with Product with Serializable

    Path segments, slash-prefixed (Section 3.2.6)

  15. type Query = List[QueryDef]
  16. sealed trait QueryDef extends AnyRef
  17. sealed trait QueryExp extends QueryDef
  18. final case class ReservedExp(names: List[String]) extends PathDef with Product with Serializable

    Level 2 allows reserved string expansion (Section 3.2.3)

    Level 2 allows reserved string expansion (Section 3.2.3)

    Level 3 allows reserved expansion with multiple variables (Section 3.2.3)

  19. final case class SimpleFragmentExp(name: String) extends FragmentDef with Product with Serializable

    Fragment expansion, crosshatch-prefixed (Section 3.2.4)

  20. final case class VarExp(names: List[String]) extends PathDef with Product with Serializable

    Level 1 allows string expansion (Section 3.2.2)

    Level 1 allows string expansion (Section 3.2.2)

    Level 3 allows string expansion with multiple variables (Section 3.2.2)

Value Members

  1. def isUnreserved(s: String): Boolean
  2. def isUnreservedOrEncoded(s: String): Boolean
  3. object MultiFragmentExp extends Serializable
  4. object ParamContExp extends Serializable
  5. object ParamElm extends Serializable
  6. object ParamExp extends Serializable
  7. object ParamReservedExp extends Serializable
  8. object ParamVarExp extends Serializable
  9. object PathExp extends Serializable
  10. object ReservedExp extends Serializable
  11. object VarExp extends Serializable