QueryOps
- Source:
- QueryOps.scala
Type members
Types
Value members
Abstract methods
Concrete methods
alias for withQueryParam
alias for withQueryParam
scala> import org.http4s.implicits._
scala> uri"www.scala.com".++?("key" -> List("value1", "value2", "value3"))
res1: Uri = www.scala.com?key=value1&key=value2&key=value3
- Source:
- QueryOps.scala
Checks if a specified parameter exists in the Query. A parameter without a name can be checked with an empty string.
Checks if a specified parameter exists in the Query. A parameter without a name can be checked with an empty string.
- Source:
- QueryOps.scala
Creates maybe a new Self
without the specified parameter in query.
If no parameter with the given key
exists then this
will be
returned.
Creates maybe a new Self
without the specified parameter in query.
If no parameter with the given key
exists then this
will be
returned.
- Source:
- QueryOps.scala
Creates maybe a new Self
with the specified parameters. The entire
Query will be replaced with the given one.
Creates maybe a new Self
with the specified parameters. The entire
Query will be replaced with the given one.
- Source:
- QueryOps.scala
Creates maybe a new Self
with all the specified parameters in the
Query. If any of the given parameters' keys already exists, the
value(s) will be replaced. Parameters from the input map are added
left-to-right, so if a parameter with a given key is specified more than
once, it will be self-overwriting.
Creates maybe a new Self
with all the specified parameters in the
Query. If any of the given parameters' keys already exists, the
value(s) will be replaced. Parameters from the input map are added
left-to-right, so if a parameter with a given key is specified more than
once, it will be self-overwriting.
- Source:
- QueryOps.scala
Creates maybe a new Self
with the specified parameter in the Query.
If the value is empty or if the parameter to be added equal the existing
entry the same instance of Self
will be returned.
If a parameter with the given key
already exists the values will be
replaced.
Creates maybe a new Self
with the specified parameter in the Query.
If the value is empty or if the parameter to be added equal the existing
entry the same instance of Self
will be returned.
If a parameter with the given key
already exists the values will be
replaced.
- Source:
- QueryOps.scala
Creates maybe a new Self
with the specified parameter in the Query.
If the value is empty or if the parameter to be added equal the existing
entry the same instance of Self
will be returned.
If a parameter with the given name
already exists the values will be
replaced.
Creates maybe a new Self
with the specified parameter in the Query.
If the value is empty or if the parameter to be added equal the existing
entry the same instance of Self
will be returned.
If a parameter with the given name
already exists the values will be
replaced.
- Source:
- QueryOps.scala
Creates a new Self
with the specified parameter in the Query.
If a parameter with the given QueryParam.key
already exists the values will be
replaced with an empty list.
Creates a new Self
with the specified parameter in the Query.
If a parameter with the given QueryParam.key
already exists the values will be
replaced with an empty list.
- Source:
- QueryOps.scala
Creates a new Self
with the specified parameter in the Query.
If a parameter with the given key
already exists the values will be
replaced with an empty list.
Creates a new Self
with the specified parameter in the Query.
If a parameter with the given key
already exists the values will be
replaced with an empty list.
- Source:
- QueryOps.scala
Creates maybe a new Self
with the specified parameter in the Query.
If a parameter with the given key
already exists the values will be
replaced. If the parameter to be added equal the existing entry the same
instance of Self
will be returned.
Creates maybe a new Self
with the specified parameter in the Query.
If a parameter with the given key
already exists the values will be
replaced. If the parameter to be added equal the existing entry the same
instance of Self
will be returned.
- Source:
- QueryOps.scala
Creates maybe a new Self
with the specified parameters in the Query.
If a parameter with the given key
already exists the values will be
replaced.
Creates maybe a new Self
with the specified parameters in the Query.
If a parameter with the given key
already exists the values will be
replaced.
- Source:
- QueryOps.scala
Creates maybe a new Self
with all the specified parameters in the
Query. If any of the given parameters' keys already exists, the
value(s) will be replaced. Parameters from the input map are added
left-to-right, so if a parameter with a given key is specified more than
once, it will be self-overwriting.
Creates maybe a new Self
with all the specified parameters in the
Query. If any of the given parameters' keys already exists, the
value(s) will be replaced. Parameters from the input map are added
left-to-right, so if a parameter with a given key is specified more than
once, it will be self-overwriting.
- Source:
- QueryOps.scala