object UriTemplate extends Serializable
- Source
- UriTemplate.scala
- Alphabetic
- By Inheritance
- UriTemplate
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
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.
- type Fragment = List[FragmentDef]
- sealed trait FragmentDef extends AnyRef
-
final
case class
FragmentElm(value: String) extends FragmentDef with Product with Serializable
Static fragment element
-
final
case class
MultiFragmentExp(names: List[String]) extends FragmentDef with Product with Serializable
Fragment expansion with multiple variables, crosshatch-prefixed (Section 3.2.4)
-
final
case class
ParamContExp(names: List[String]) extends QueryExp with Product with Serializable
Form-style query continuation (Section 3.2.9)
-
final
case class
ParamElm(name: String, values: List[String]) extends QueryDef with Product with Serializable
Static query parameter element
-
final
case class
ParamExp(names: List[String]) extends QueryExp with Product with Serializable
Form-style query, ampersand-separated (Section 3.2.8)
-
final
case class
ParamReservedExp(name: String, variables: List[String]) extends QueryDef with Product with Serializable
Reserved string expansion for query parameter
-
final
case class
ParamVarExp(name: String, variables: List[String]) extends QueryDef with Product with Serializable
Simple string expansion for query parameter
- type Path = List[PathDef]
- sealed trait PathDef extends AnyRef
-
final
case class
PathElm(value: String) extends PathDef with Product with Serializable
Static path element
-
final
case class
PathExp(names: List[String]) extends PathDef with Product with Serializable
Path segments, slash-prefixed (Section 3.2.6)
- type Query = List[QueryDef]
- sealed trait QueryDef extends AnyRef
- sealed trait QueryExp extends QueryDef
-
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)
-
final
case class
SimpleFragmentExp(name: String) extends FragmentDef with Product with Serializable
Fragment expansion, crosshatch-prefixed (Section 3.2.4)
-
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
- def isUnreserved(s: String): Boolean
- def isUnreservedOrEncoded(s: String): Boolean
- object MultiFragmentExp extends Serializable
- object ParamContExp extends Serializable
- object ParamElm extends Serializable
- object ParamExp extends Serializable
- object ParamReservedExp extends Serializable
- object ParamVarExp extends Serializable
- object PathExp extends Serializable
- object ReservedExp extends Serializable
- object VarExp extends Serializable