org.http4s

Query

Related Docs: object Query | package http4s

final class Query extends IndexedSeq[KeyValue] with IndexedSeqOptimized[KeyValue, Query] with QueryOps with Renderable

Collection representation of a query string

It is a indexed sequence of key and maybe a value pairs which maps precisely to a query string, modulo the identity of separators.

When rendered, the resulting String will have the pairs separated by '&' while the key is separated from the value with '='

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Query
  2. Renderable
  3. QueryOps
  4. IndexedSeqOptimized
  5. IndexedSeq
  6. IndexedSeq
  7. IndexedSeqLike
  8. Seq
  9. Seq
  10. SeqLike
  11. GenSeq
  12. GenSeqLike
  13. PartialFunction
  14. Function1
  15. Iterable
  16. Iterable
  17. IterableLike
  18. Equals
  19. GenIterable
  20. GenIterableLike
  21. Traversable
  22. Immutable
  23. Traversable
  24. GenTraversable
  25. GenericTraversableTemplate
  26. TraversableLike
  27. GenTraversableLike
  28. Parallelizable
  29. TraversableOnce
  30. GenTraversableOnce
  31. FilterMonadic
  32. HasNewBuilder
  33. AnyRef
  34. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = Query

    Attributes
    protected
    Definition Classes
    QueryQueryOps → TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +*?[T](values: Seq[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  4. def +*?[T](value: T)(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  5. def ++[B >: KeyValue, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: KeyValue, That](that: Traversable[B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: KeyValue, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike
  8. def +:[B >: KeyValue, That](elem: B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    Query → SeqLike → GenSeqLike
  9. def +?[K, T](name: K, values: Seq[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  10. def +?[K](name: K)(implicit arg0: QueryParamKeyLike[K]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  11. def +?[K, T](name: K, value: T)(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  12. def +?[T](implicit arg0: QueryParam[T]): Self

    alias for withQueryParam

    alias for withQueryParam

    Definition Classes
    QueryOps
  13. def +??[T](value: Option[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    alias for withOptionQueryParam

    alias for withOptionQueryParam

    Definition Classes
    QueryOps
  14. def +??[K, T](name: K, value: Option[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self

    alias for withOptionQueryParam

    alias for withOptionQueryParam

    Definition Classes
    QueryOps
  15. def +??[T](value: Maybe[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    alias for withMaybeQueryParam

    alias for withMaybeQueryParam

    Definition Classes
    QueryOps
  16. def +??[K, T](name: K, value: Maybe[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self

    alias for withMaybeQueryParam

    alias for withMaybeQueryParam

    Definition Classes
    QueryOps
  17. def -?[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self

    alias for removeQueryParam

    alias for removeQueryParam

    Definition Classes
    QueryOps
  18. def -?[T](implicit key: QueryParam[T]): Self

    alias for removeQueryParam

    alias for removeQueryParam

    Definition Classes
    QueryOps
  19. def /:[B](z: B)(op: (B, KeyValue) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def :+[B >: KeyValue, That](elem: B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    Query → SeqLike → GenSeqLike
  21. def :\[B](z: B)(op: (KeyValue, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def =?[T](q: Map[String, Seq[T]])(implicit arg0: QueryParamEncoder[T]): Self

    alias for setQueryParams

    alias for setQueryParams

    Definition Classes
    QueryOps
  24. def ?[K](name: K)(implicit arg0: QueryParamKeyLike[K]): Boolean

    alias for containsQueryParam

    alias for containsQueryParam

    Definition Classes
    QueryOps
  25. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  26. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  27. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  28. def aggregate[B](z: ⇒ B)(seqop: (B, KeyValue) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def andThen[C](k: (KeyValue) ⇒ C): PartialFunction[Int, C]

    Definition Classes
    PartialFunction → Function1
  30. def apply(idx: Int): KeyValue

    Definition Classes
    Query → SeqLike → GenSeqLike → Function1
  31. def applyOrElse[A1 <: Int, B1 >: KeyValue](x: A1, default: (A1) ⇒ B1): B1

    Definition Classes
    PartialFunction
  32. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  33. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  34. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def collect[B, That](pf: PartialFunction[KeyValue, B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  36. def collectFirst[B](pf: PartialFunction[KeyValue, B]): Option[B]

    Definition Classes
    TraversableOnce
  37. def combinations(n: Int): Iterator[Query]

    Definition Classes
    SeqLike
  38. def companion: GenericCompanion[IndexedSeq]

    Definition Classes
    IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  39. def compose[A](g: (A) ⇒ Int): (A) ⇒ KeyValue

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  40. def contains[A1 >: KeyValue](elem: A1): Boolean

    Definition Classes
    SeqLike
  41. def containsQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Boolean

    Definition Classes
    QueryOps
  42. def containsQueryParam[T](implicit key: QueryParam[T]): Boolean

    Checks if a specified parameter exists in the Query.

    Checks if a specified parameter exists in the Query. A parameter without a name can be checked with an empty string.

    Definition Classes
    QueryOps
  43. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  44. def copyToArray[B >: KeyValue](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  45. def copyToArray[B >: KeyValue](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def copyToArray[B >: KeyValue](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def copyToBuffer[B >: KeyValue](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  48. def corresponds[B](that: GenSeq[B])(p: (KeyValue, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  49. def count(p: (KeyValue) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def diff[B >: KeyValue](that: GenSeq[B]): Query

    Definition Classes
    SeqLike → GenSeqLike
  51. def distinct: Query

    Definition Classes
    SeqLike → GenSeqLike
  52. def drop(n: Int): Query

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  53. def dropRight(n: Int): Query

    Definition Classes
    IndexedSeqOptimized → IterableLike
  54. def dropWhile(p: (KeyValue) ⇒ Boolean): Query

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  55. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  56. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  57. def equals(that: Any): Boolean

    Definition Classes
    GenSeqLike → Equals → Any
  58. def exists(p: (KeyValue) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def filter(p: (KeyValue) ⇒ Boolean): Query

    Definition Classes
    TraversableLike → GenTraversableLike
  60. def filterNot(p: (KeyValue) ⇒ Boolean): Query

    Definition Classes
    TraversableLike → GenTraversableLike
  61. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  62. def find(p: (KeyValue) ⇒ Boolean): Option[KeyValue]

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  63. def flatMap[B, That](f: (KeyValue) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  64. def flatten[B](implicit asTraversable: (KeyValue) ⇒ GenTraversableOnce[B]): IndexedSeq[B]

    Definition Classes
    GenericTraversableTemplate
  65. def fold[A1 >: KeyValue](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def foldLeft[B](z: B)(op: (B, KeyValue) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  67. def foldRight[B](z: B)(op: (KeyValue, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  68. def forall(p: (KeyValue) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  69. def foreach[U](f: (KeyValue) ⇒ U): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  70. def genericBuilder[B]: Builder[B, IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
  71. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  72. def groupBy[K](f: (KeyValue) ⇒ K): Map[K, Query]

    Definition Classes
    TraversableLike → GenTraversableLike
  73. def grouped(size: Int): Iterator[Query]

    Definition Classes
    IterableLike
  74. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  75. def hashCode(): Int

    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  76. def head: KeyValue

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  77. def headOption: Option[KeyValue]

    Definition Classes
    TraversableLike → GenTraversableLike
  78. def indexOf[B >: KeyValue](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  79. def indexOf[B >: KeyValue](elem: B): Int

    Definition Classes
    GenSeqLike
  80. def indexOfSlice[B >: KeyValue](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  81. def indexOfSlice[B >: KeyValue](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  82. def indexWhere(p: (KeyValue) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  83. def indexWhere(p: (KeyValue) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  84. def indices: Range

    Definition Classes
    SeqLike
  85. def init: Query

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  86. def inits: Iterator[Query]

    Definition Classes
    TraversableLike
  87. def intersect[B >: KeyValue](that: GenSeq[B]): Query

    Definition Classes
    SeqLike → GenSeqLike
  88. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  89. def isEmpty: Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  90. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  91. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  92. def iterator: Iterator[KeyValue]

    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  93. def last: KeyValue

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  94. def lastIndexOf[B >: KeyValue](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  95. def lastIndexOf[B >: KeyValue](elem: B): Int

    Definition Classes
    GenSeqLike
  96. def lastIndexOfSlice[B >: KeyValue](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  97. def lastIndexOfSlice[B >: KeyValue](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  98. def lastIndexWhere(p: (KeyValue) ⇒ Boolean, end: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  99. def lastIndexWhere(p: (KeyValue) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  100. def lastOption: Option[KeyValue]

    Definition Classes
    TraversableLike → GenTraversableLike
  101. def length: Int

    Definition Classes
    Query → SeqLike → GenSeqLike
  102. def lengthCompare(len: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike
  103. def lift: (Int) ⇒ Option[KeyValue]

    Definition Classes
    PartialFunction
  104. def map[B, That](f: (KeyValue) ⇒ B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  105. def max[B >: KeyValue](implicit cmp: Ordering[B]): KeyValue

    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def maxBy[B](f: (KeyValue) ⇒ B)(implicit cmp: Ordering[B]): KeyValue

    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def min[B >: KeyValue](implicit cmp: Ordering[B]): KeyValue

    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def minBy[B](f: (KeyValue) ⇒ B)(implicit cmp: Ordering[B]): KeyValue

    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. lazy val multiParams: Map[String, Seq[String]]

    Map[String, Seq[String] ] representation of the Query

    Map[String, Seq[String] ] representation of the Query

    Params are represented as a Seq[String] and may be empty.

  113. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  114. def newBuilder: Builder[KeyValue, Query]

    Attributes
    protected[this]
    Definition Classes
    Query → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  115. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. final def notify(): Unit

    Definition Classes
    AnyRef
  117. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  118. def orElse[A1 <: Int, B1 >: KeyValue](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  119. def padTo[B >: KeyValue, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  120. def par: ParSeq[KeyValue]

    Definition Classes
    Parallelizable
  121. def parCombiner: Combiner[KeyValue, ParSeq[KeyValue]]

    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  122. def params: Map[String, String]

    Map[String, String] representation of the Query

    Map[String, String] representation of the Query

    If multiple values exist for a key, the first is returned. If none exist, the empty String "" is returned.

  123. def partition(p: (KeyValue) ⇒ Boolean): (Query, Query)

    Definition Classes
    TraversableLike → GenTraversableLike
  124. def patch[B >: KeyValue, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  125. def permutations: Iterator[Query]

    Definition Classes
    SeqLike
  126. def prefixLength(p: (KeyValue) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  127. def product[B >: KeyValue](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. val query: Query

    Attributes
    protected
    Definition Classes
    QueryQueryOps
  129. def reduce[A1 >: KeyValue](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def reduceLeft[B >: KeyValue](op: (B, KeyValue) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  131. def reduceLeftOption[B >: KeyValue](op: (B, KeyValue) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def reduceOption[A1 >: KeyValue](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceRight[B >: KeyValue](op: (KeyValue, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  134. def reduceRightOption[B >: KeyValue](op: (KeyValue, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def removeQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self

    Creates maybe a new Self without the specified parameter in query.

    Creates maybe a new Self without the specified parameter in query. If no parameter with the given key exists then this will be returned.

    Definition Classes
    QueryOps
  136. def render(writer: Writer): writer.type

    Render the Query as a String.

    Render the Query as a String.

    Pairs are separated by '&' and keys are separated from values by '='

    Definition Classes
    QueryRenderable
  137. def renderString: String

    Generates a String rendering of this object

    Generates a String rendering of this object

    Definition Classes
    Renderable
  138. def replaceQuery(query: Query): Self

    Attributes
    protected
    Definition Classes
    QueryQueryOps
  139. def repr: Query

    Definition Classes
    TraversableLike → GenTraversableLike
  140. def reverse: Query

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  141. def reverseIterator: Iterator[KeyValue]

    Definition Classes
    IndexedSeqOptimized → SeqLike
  142. def reverseMap[B, That](f: (KeyValue) ⇒ B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  143. def reversed: List[KeyValue]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  144. def runWith[U](action: (KeyValue) ⇒ U): (Int) ⇒ Boolean

    Definition Classes
    PartialFunction
  145. def sameElements[B >: KeyValue](that: GenIterable[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  146. def scan[B >: KeyValue, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  147. def scanLeft[B, That](z: B)(op: (B, KeyValue) ⇒ B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  148. def scanRight[B, That](z: B)(op: (KeyValue, B) ⇒ B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  149. def segmentLength(p: (KeyValue) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  150. def self: Self

    Attributes
    protected
    Definition Classes
    QueryQueryOps
  151. def seq: IndexedSeq[KeyValue]

    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  152. def setQueryParams[K, T](params: Map[K, Seq[T]])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self

    Creates maybe a new Self with the specified parameters.

    Creates maybe a new Self with the specified parameters. The entire Query will be replaced with the given one.

    Definition Classes
    QueryOps
  153. def size: Int

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  154. def slice(from: Int, until: Int): Query

    Definition Classes
    Query → IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  155. def sliding(size: Int, step: Int): Iterator[Query]

    Definition Classes
    IterableLike
  156. def sliding(size: Int): Iterator[Query]

    Definition Classes
    IterableLike
  157. def sortBy[B](f: (KeyValue) ⇒ B)(implicit ord: Ordering[B]): Query

    Definition Classes
    SeqLike
  158. def sortWith(lt: (KeyValue, KeyValue) ⇒ Boolean): Query

    Definition Classes
    SeqLike
  159. def sorted[B >: KeyValue](implicit ord: Ordering[B]): Query

    Definition Classes
    SeqLike
  160. def span(p: (KeyValue) ⇒ Boolean): (Query, Query)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  161. def splitAt(n: Int): (Query, Query)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  162. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  163. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  164. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  165. def sum[B >: KeyValue](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  167. def tail: Query

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  168. def tails: Iterator[Query]

    Definition Classes
    TraversableLike
  169. def take(n: Int): Query

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  170. def takeRight(n: Int): Query

    Definition Classes
    IndexedSeqOptimized → IterableLike
  171. def takeWhile(p: (KeyValue) ⇒ Boolean): Query

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  172. def thisCollection: IndexedSeq[KeyValue]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  173. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, KeyValue, Col[KeyValue]]): Col[KeyValue]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  174. def toArray[B >: KeyValue](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  175. def toBuffer[A1 >: KeyValue]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  176. def toCollection(repr: Query): IndexedSeq[KeyValue]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  177. def toIndexedSeq: IndexedSeq[KeyValue]

    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  178. def toIterable: Iterable[KeyValue]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  179. def toIterator: Iterator[KeyValue]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  180. def toList: List[KeyValue]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  181. def toMap[T, U](implicit ev: <:<[KeyValue, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  182. def toSeq: Seq[KeyValue]

    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  183. def toSet[B >: KeyValue]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  184. def toStream: Stream[KeyValue]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  185. def toString(): String

    Definition Classes
    Renderable → Any
  186. def toTraversable: Traversable[KeyValue]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  187. def toVector: Vector[KeyValue]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  188. def transpose[B](implicit asTraversable: (KeyValue) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  189. def union[B >: KeyValue, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  190. def unzip[A1, A2](implicit asPair: (KeyValue) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Definition Classes
    GenericTraversableTemplate
  191. def unzip3[A1, A2, A3](implicit asTriple: (KeyValue) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    Definition Classes
    GenericTraversableTemplate
  192. def updated[B >: KeyValue, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Query, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  193. def view(from: Int, until: Int): SeqView[KeyValue, Query]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  194. def view: SeqView[KeyValue, Query]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  195. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  196. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  197. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  198. def withFilter(p: (KeyValue) ⇒ Boolean): FilterMonadic[KeyValue, Query]

    Definition Classes
    TraversableLike → FilterMonadic
  199. def withMaybeQueryParam[T](value: Maybe[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    Creates maybe a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  200. def withMaybeQueryParam[T, K](key: K, value: Maybe[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self

    Creates maybe a new Self with the specified parameter in the Query.

    Creates maybe a new Self with the specified parameter in the Query. If the value is empty the same instance of Self will be returned. If a parameter with the given key already exists the values will be replaced.

    Definition Classes
    QueryOps
  201. def withOptionQueryParam[T](value: Option[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self

    Creates maybe a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  202. def withOptionQueryParam[T, K](key: K, value: Option[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self

    Creates maybe a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  203. def withQueryParam[T, K](key: K, values: Seq[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self

    Creates maybe a new Self with the specified parameters in the Query.

    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.

    Definition Classes
    QueryOps
  204. def withQueryParam[T, K](key: K, value: T)(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self

    Creates maybe a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  205. def withQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self

    Creates a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  206. def withQueryParam[T](implicit arg0: QueryParam[T]): Self

    Creates a new Self with the specified parameter in the Query.

    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.

    Definition Classes
    QueryOps
  207. def zip[A1 >: KeyValue, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Query, (A1, B), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  208. def zipAll[B, A1 >: KeyValue, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Query, (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  209. def zipWithIndex[A1 >: KeyValue, That](implicit bf: CanBuildFrom[Query, (A1, Int), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike

Inherited from Renderable

Inherited from QueryOps

Inherited from IndexedSeq[KeyValue]

Inherited from IndexedSeq[KeyValue]

Inherited from IndexedSeqLike[KeyValue, Query]

Inherited from Seq[KeyValue]

Inherited from Seq[KeyValue]

Inherited from SeqLike[KeyValue, Query]

Inherited from GenSeq[KeyValue]

Inherited from GenSeqLike[KeyValue, Query]

Inherited from PartialFunction[Int, KeyValue]

Inherited from (Int) ⇒ KeyValue

Inherited from Iterable[KeyValue]

Inherited from Iterable[KeyValue]

Inherited from IterableLike[KeyValue, Query]

Inherited from Equals

Inherited from GenIterable[KeyValue]

Inherited from GenIterableLike[KeyValue, Query]

Inherited from Traversable[KeyValue]

Inherited from Immutable

Inherited from Traversable[KeyValue]

Inherited from GenTraversable[KeyValue]

Inherited from TraversableLike[KeyValue, Query]

Inherited from GenTraversableLike[KeyValue, Query]

Inherited from TraversableOnce[KeyValue]

Inherited from GenTraversableOnce[KeyValue]

Inherited from FilterMonadic[KeyValue, Query]

Inherited from HasNewBuilder[KeyValue, Query]

Inherited from AnyRef

Inherited from Any

Ungrouped