object UriRendering
- Source
- Uri.scala
- Alphabetic
- By Inheritance
- UriRendering
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def renderAuthority[R <: Rendering](r: R, authority: Authority, path: Path, scheme: String, charset: Charset): r.type
- def renderAuthority[R <: Rendering](r: R, authority: Authority, scheme: String, charset: Charset): r.type
- def renderPath[R <: Rendering](r: R, path: Path, charset: Charset, encodeFirstSegmentColons: Boolean = false): r.type
- Annotations
- @tailrec()
- def renderQuery[R <: Rendering](r: R, query: Query, charset: Charset, keep: CharPredicate = `strict-query-char-np`): r.type
- def renderUri[R <: Rendering](r: R, value: Uri, charset: Charset): r.type
Renders this Uri into the given Renderer as defined by http://tools.ietf.org/html/rfc3986.
Renders this Uri into the given Renderer as defined by http://tools.ietf.org/html/rfc3986. All Uri components are encoded and joined as required by the spec. The given charset is used to produce percent-encoded representations of potentially existing non-ASCII characters in the different components.
- def renderUriWithoutFragment[R <: Rendering](r: R, value: Uri, charset: Charset): r.type
Renders this Uri (without the fragment component) into the given Renderer as defined by http://tools.ietf.org/html/rfc3986.
Renders this Uri (without the fragment component) into the given Renderer as defined by http://tools.ietf.org/html/rfc3986. All Uri components are encoded and joined as required by the spec. The given charset is used to produce percent-encoded representations of potentially existing non-ASCII characters in the different components.
- implicit object AuthorityRenderer extends Renderer[Authority]
- implicit object HostRenderer extends Renderer[Host]
- implicit object PathRenderer extends Renderer[Path]
- implicit object QueryRenderer extends Renderer[Query]
- implicit object UriRenderer extends Renderer[Uri]