QueryOps

trait QueryOps
class Object
trait Matchable
class Any
class Query
class Uri

Type members

Types

protected type Self <: QueryOps

Value members

Abstract methods

protected def replaceQuery(query: Query): Self
protected def self: Self

Concrete methods

def +*?[T](value: T)(implicit evidence$4: QueryParamKeyLike[T], evidence$5: QueryParamEncoder[T]): Self

alias for withQueryParam

alias for withQueryParam

def +*?[T](values: Seq[T])(implicit evidence$6: QueryParam[T], evidence$7: QueryParamEncoder[T]): Self

alias for withQueryParam

alias for withQueryParam

def ++?[K, T](param: (K, Seq[T]))(implicit evidence$11: QueryParamKeyLike[K], evidence$12: QueryParamEncoder[T]): Self

alias for withQueryParam

alias for withQueryParam

def +?[T](implicit evidence$3: QueryParam[T]): Self

alias for withQueryParam

alias for withQueryParam

def +?[K, T](param: (K, T))(implicit evidence$8: QueryParamKeyLike[K], evidence$9: QueryParamEncoder[T]): Self

alias for withQueryParam

alias for withQueryParam

def +?[K](name: K)(implicit evidence$10: QueryParamKeyLike[K]): Self

alias for withQueryParam

alias for withQueryParam

def +??[K, T](param: (K, Option[T]))(implicit evidence$13: QueryParamKeyLike[K], evidence$14: QueryParamEncoder[T]): Self

alias for withOptionQueryParam

alias for withOptionQueryParam

def +??[T](value: Option[T])(implicit evidence$15: QueryParam[T], evidence$16: QueryParamEncoder[T]): Self

alias for withOptionQueryParam

alias for withOptionQueryParam

def -?[T](implicit key: QueryParam[T]): Self

alias for removeQueryParam

alias for removeQueryParam

def -?[K](key: K)(implicit evidence$17: QueryParamKeyLike[K]): Self

alias for removeQueryParam

alias for removeQueryParam

def =?[T](q: Map[String, List[T]])(implicit evidence$2: QueryParamEncoder[T]): Self

alias for setQueryParams

alias for setQueryParams

def ?[K](name: K)(implicit evidence$1: QueryParamKeyLike[K]): Boolean

alias for containsQueryParam

alias for containsQueryParam

def containsQueryParam[T](implicit key: QueryParam[T]): Boolean

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.

def containsQueryParam[K](key: K)(implicit evidence$18: QueryParamKeyLike[K]): Boolean
def removeQueryParam[K](key: K)(implicit evidence$19: QueryParamKeyLike[K]): Self

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.

def setQueryParams[K, T](params: Map[K, Seq[T]])(implicit evidence$20: QueryParamKeyLike[K], evidence$21: QueryParamEncoder[T]): Self

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.

def withMultiValueQueryParams[T, K](params: Map[K, Seq[T]])(implicit evidence$30: QueryParamEncoder[T], evidence$31: QueryParamKeyLike[K]): Self

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.

def withOptionQueryParam[T, K](key: K, value: Option[T])(implicit evidence$32: QueryParamEncoder[T], evidence$33: QueryParamKeyLike[K]): Self

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.

def withOptionQueryParam[T](value: Option[T])(implicit evidence$34: QueryParam[T], evidence$35: QueryParamEncoder[T]): Self

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.

def withQueryParam[T](implicit evidence$22: QueryParam[T]): Self

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.

def withQueryParam[K](key: K)(implicit evidence$23: QueryParamKeyLike[K]): Self

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.

def withQueryParam[T, K](key: K, value: T)(implicit evidence$24: QueryParamEncoder[T], evidence$25: QueryParamKeyLike[K]): Self

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.

def withQueryParam[T, K](key: K, values: Seq[T])(implicit evidence$26: QueryParamEncoder[T], evidence$27: QueryParamKeyLike[K]): Self

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.

def withQueryParams[T, K](params: Map[K, T])(implicit evidence$28: QueryParamEncoder[T], evidence$29: QueryParamKeyLike[K]): Self

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.

Abstract fields

protected val query: Query