final class QueryParams extends QueryParamsBase
Represents immutable query parameters from a query string (e.g. "?foo=bar&asd=qwe").
This class distinguishes between 3 different types of values for a key:
- null - "?foo"
- blank - "?foo="
- non-blank - "?foo=bar"
- Source
- QueryParams.scala
- Alphabetic
- By Inheritance
- QueryParams
- QueryParamsBase
- SeqOps
- IterableOps
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++[B >: (String, String)](suffix: IterableOnce[B]): Seq[B]
- Definition Classes
- IterableOps
- Annotations
- @inline()
- final def ++:[B >: (String, String)](prefix: IterableOnce[B]): Seq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- final def +:[B >: (String, String)](elem: B): Seq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :+[B >: (String, String)](elem: B): Seq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def :++[B >: (String, String)](suffix: IterableOnce[B]): Seq[B]
- Definition Classes
- SeqOps
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def add(other: QueryParams): QueryParams
Add multiple key/value pairs
Add multiple key/value pairs
- returns
A new QueryParams instance with the added key/value pair
- def add(kvPairs: (String, String)*): QueryParams
Add multiple key/value pairs
Add multiple key/value pairs
- returns
A new QueryParams instance with the added key/value pair
- def add(key: String, value: String): QueryParams
Add a key/value pair
Add a key/value pair
- returns
A new QueryParams instance with the added key/value pair
- final def addString(b: StringBuilder): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- IterableOnceOps
- def allKeys: Set[String]
The unique set of keys with or without values
- def appended[B >: (String, String)](elem: B): Seq[B]
- Definition Classes
- SeqOps
- def appendedAll[B >: (String, String)](suffix: IterableOnce[B]): Seq[B]
- Definition Classes
- SeqOps
- def apply(key: String): Seq[String]
Returns all values for the given key or throws a NoSuchElementException if the key doesn't exists.
Returns all values for the given key or throws a NoSuchElementException if the key doesn't exists. An Empty Seq is returned if the key exists but has no non-null values.
- def apply(idx: Int): (String, String)
- Definition Classes
- QueryParamsBase → SeqOps
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def coll: QueryParams
- Attributes
- protected
- Definition Classes
- QueryParamsBase → IterableOps
- def collect[B](pf: PartialFunction[(String, String), B]): Seq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[(String, String), B]): Option[B]
- Definition Classes
- IterableOnceOps
- def combinations(n: Int): Iterator[QueryParams]
- Definition Classes
- SeqOps
- final def concat[B >: (String, String)](suffix: IterableOnce[B]): Seq[B]
- Definition Classes
- SeqOps → IterableOps
- Annotations
- @inline()
- def contains(elem: (String, String)): Boolean
Check for key/value pair existence
- def contains(key: String, value: String): Boolean
Check for key/value pair existence
- def contains(key: String): Boolean
Check for key existence
- def contains[A1 >: (String, String)](elem: A1): Boolean
- Definition Classes
- SeqOps
- def containsSlice[B](that: Seq[B]): Boolean
- Definition Classes
- SeqOps
- def copyToArray[B >: (String, String)](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: (String, String)](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: (String, String)](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- def corresponds[B](that: Seq[B])(p: ((String, String), B) => Boolean): Boolean
- Definition Classes
- SeqOps
- def corresponds[B](that: IterableOnce[B])(p: ((String, String), B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: ((String, String)) => Boolean): Int
- Definition Classes
- IterableOnceOps
- def diff[B >: (String, String)](that: Seq[B]): QueryParams
- Definition Classes
- SeqOps
- def distinct: QueryParams
- Definition Classes
- SeqOps
- def distinctBy[B](f: ((String, String)) => B): QueryParams
- Definition Classes
- SeqOps
- def drop(n: Int): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def dropRight(n: Int): QueryParams
- Definition Classes
- IterableOps
- def dropWhile(p: ((String, String)) => Boolean): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def empty: QueryParams
- Definition Classes
- IterableOps
- def endsWith[B >: (String, String)](that: Iterable[B]): Boolean
- Definition Classes
- SeqOps
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(that: Any): Boolean
- Definition Classes
- QueryParams → AnyRef → Any
- def exists(p: ((String, String)) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter(pred: ((String, String)) => Boolean): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def filterKeys(f: (String) => Boolean): QueryParams
- def filterNot(pred: ((String, String)) => Boolean): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def filterValues(f: (String) => Boolean): QueryParams
- def find(p: ((String, String)) => Boolean): Option[(String, String)]
- Definition Classes
- IterableOnceOps
- def findLast(p: ((String, String)) => Boolean): Option[(String, String)]
- Definition Classes
- SeqOps
- def first(key: String): String
Returns the first non-null value for the given key or throws a NoSuchElementException if none exists.
- def firstNonBlank(key: String): String
Returns the first non-blank value for the given key or throws a NoSuchElementException if none exists.
- def flatMap[B](f: ((String, String)) => IterableOnce[B]): Seq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: ((String, String)) => IterableOnce[B]): Seq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: (String, String)](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, (String, String)) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: ((String, String), B) => B): B
- Definition Classes
- IterableOnceOps
- def forall(p: ((String, String)) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: ((String, String)) => U): Unit
- Definition Classes
- IterableOnceOps
- def fromSpecific(it: IterableOnce[(String, String)]): QueryParams
- Definition Classes
- QueryParamsBase → IterableOps
- def get(key: String): Seq[String]
Returns all values for the given key.
Returns all values for the given key. An Empty Seq is returns if the key doesn't exist or there are no non-null values.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getFirst(key: String): Option[String]
Optionally Returns the first non-null value for the given key
- def getFirstNonBlank(key: String): Option[String]
Optionally Returns the first non-blank value for the given key
- def getNonBlank(key: String): Seq[String]
Returns all non-blank values for the given key.
Returns all non-blank values for the given key. An Empty Seq is returns if the key doesn't exist or there are no non-null values.
- def groupBy[K](f: ((String, String)) => K): Map[K, QueryParams]
- Definition Classes
- IterableOps
- def groupMap[K, B](key: ((String, String)) => K)(f: ((String, String)) => B): Map[K, Seq[B]]
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: ((String, String)) => K)(f: ((String, String)) => B)(reduce: (B, B) => B): Map[K, B]
- Definition Classes
- IterableOps
- def grouped(size: Int): Iterator[QueryParams]
- Definition Classes
- IterableOps
- def hasKey(key: String): Boolean
Returns true if there is a matching key (which doesn't need to have a value)
- def hasKeyWithNonBlankValue(key: String): Boolean
Returns true if there is a matching key (which also has a non-blank value)
- def hasKeyWithValue(key: String, value: String): Boolean
Returns true if there is a matching key which has the given value
Returns true if there is a matching key which has the given value
Note: This is an alias for contains() but seems like a more natural name to use in code.
- def hasKeyWithValue(key: String): Boolean
Returns true if there is a matching key (which also has a value)
Returns true if there is a matching key (which also has a value)
NOTE: The value can be blank (e.g. "?foo=" is blank vs "?foo" is null)
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def head: (String, String)
- Definition Classes
- IterableOps
- def headOption: Option[(String, String)]
- Definition Classes
- IterableOps
- def indexOf[B >: (String, String)](elem: B): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
- def indexOf[B >: (String, String)](elem: B, from: Int): Int
- Definition Classes
- SeqOps
- def indexOfSlice[B >: (String, String)](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
- def indexOfSlice[B >: (String, String)](that: Seq[B], from: Int): Int
- Definition Classes
- SeqOps
- def indexWhere(p: ((String, String)) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
- def indexWhere(p: ((String, String)) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- def indices: Range
- Definition Classes
- SeqOps
- def init: QueryParams
- Definition Classes
- IterableOps
- def inits: Iterator[QueryParams]
- Definition Classes
- IterableOps
- def intersect[B >: (String, String)](that: Seq[B]): QueryParams
- Definition Classes
- SeqOps
- def isDefinedAt(idx: Int): Boolean
- Definition Classes
- SeqOps
- def isEmpty: Boolean
- Definition Classes
- SeqOps → IterableOnceOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isTraversableAgain: Boolean
- Definition Classes
- IterableOps → IterableOnceOps
- def iterableFactory: IterableFactory[Seq]
- Definition Classes
- QueryParamsBase → IterableOps
- def iterator: Iterator[(String, String)]
- Definition Classes
- QueryParamsBase → IterableOnce
- def keysWithNonBlankValues: Set[String]
The unique set of keys with non-blank values
- def keysWithValues: Set[String]
The unique set of keys with non-null values (blank is a valid value)
- def keysWithoutValues: Set[String]
The unique set of keys without values
- def knownSize: Int
- Definition Classes
- IterableOnce
- def last: (String, String)
- Definition Classes
- IterableOps
- def lastIndexOf[B >: (String, String)](elem: B, end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexOfSlice[B >: (String, String)](that: Seq[B]): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
- def lastIndexOfSlice[B >: (String, String)](that: Seq[B], end: Int): Int
- Definition Classes
- SeqOps
- def lastIndexWhere(p: ((String, String)) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
- def lastIndexWhere(p: ((String, String)) => Boolean, end: Int): Int
- Definition Classes
- SeqOps
- def lastOption: Option[(String, String)]
- Definition Classes
- IterableOps
- def length: Int
- Definition Classes
- QueryParamsBase → SeqOps
- def lengthCompare(that: Iterable[_]): Int
- Definition Classes
- SeqOps
- def lengthCompare(len: Int): Int
- Definition Classes
- SeqOps
- final def lengthIs: SizeCompareOps
- Definition Classes
- SeqOps
- Annotations
- @inline()
- def map[B](f: ((String, String)) => B): Seq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def mapKeys(f: (String) => String): QueryParams
- def mapValues(f: (String) => String): QueryParams
- def max[B >: (String, String)](implicit ord: Ordering[B]): (String, String)
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: ((String, String)) => B)(implicit cmp: Ordering[B]): (String, String)
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: ((String, String)) => B)(implicit cmp: Ordering[B]): Option[(String, String)]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: (String, String)](implicit ord: Ordering[B]): Option[(String, String)]
- Definition Classes
- IterableOnceOps
- def min[B >: (String, String)](implicit ord: Ordering[B]): (String, String)
- Definition Classes
- IterableOnceOps
- def minBy[B](f: ((String, String)) => B)(implicit cmp: Ordering[B]): (String, String)
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: ((String, String)) => B)(implicit cmp: Ordering[B]): Option[(String, String)]
- Definition Classes
- IterableOnceOps
- def minOption[B >: (String, String)](implicit ord: Ordering[B]): Option[(String, String)]
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newSpecificBuilder: Builder[(String, String), QueryParams]
- Attributes
- protected[this]
- Definition Classes
- QueryParamsBase → IterableOps
- def nonBlank(key: String): Seq[String]
Returns all non-blank values for the given key or throws a NoSuchElementException if the key doesn't have non-null values.
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
- def nonNull(key: String): Seq[String]
Returns all non-null values for the given key or throws a NoSuchElementException if the key doesn't have non-null values.
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def occCounts[B](sq: Seq[B]): Map[B, Int]
- Attributes
- protected[collection]
- Definition Classes
- SeqOps
- def padTo[B >: (String, String)](len: Int, elem: B): Seq[B]
- Definition Classes
- SeqOps
- val params: Seq[(String, String)]
- Attributes
- protected
- Definition Classes
- QueryParams → QueryParamsBase
- def partition(p: ((String, String)) => Boolean): (QueryParams, QueryParams)
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: ((String, String)) => Either[A1, A2]): (Seq[A1], Seq[A2])
- Definition Classes
- IterableOps
- def patch[B >: (String, String)](from: Int, other: IterableOnce[B], replaced: Int): Seq[B]
- Definition Classes
- SeqOps
- def permutations: Iterator[QueryParams]
- Definition Classes
- SeqOps
- def prepended[B >: (String, String)](elem: B): Seq[B]
- Definition Classes
- SeqOps
- def prependedAll[B >: (String, String)](prefix: IterableOnce[B]): Seq[B]
- Definition Classes
- SeqOps
- def prettyString: String
- def product[B >: (String, String)](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def reduce[B >: (String, String)](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: (String, String)](op: (B, (String, String)) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: (String, String)](op: (B, (String, String)) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: (String, String)](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: (String, String)](op: ((String, String), B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: (String, String)](op: ((String, String), B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def remove(keys: String*): QueryParams
Remove a key/value pair based on the key
Remove a key/value pair based on the key
- returns
A new QueryParams instance without the keys
- def replace(key: String, value: String): QueryParams
Replaces the entry for the given key only if it was previously mapped to some value.
- def reverse: QueryParams
- Definition Classes
- SeqOps
- def reverseIterator: Iterator[(String, String)]
- Definition Classes
- SeqOps
- def reversed: Iterable[(String, String)]
- Attributes
- protected
- Definition Classes
- IterableOnceOps
- def sameElements[B >: (String, String)](that: IterableOnce[B]): Boolean
- Definition Classes
- SeqOps
- def scan[B >: (String, String)](z: B)(op: (B, B) => B): Seq[B]
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, (String, String)) => B): Seq[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: ((String, String), B) => B): Seq[B]
- Definition Classes
- IterableOps
- def search[B >: (String, String)](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- SeqOps
- def search[B >: (String, String)](elem: B)(implicit ord: Ordering[B]): SearchResult
- Definition Classes
- SeqOps
- def segmentLength(p: ((String, String)) => Boolean, from: Int): Int
- Definition Classes
- SeqOps
- final def segmentLength(p: ((String, String)) => Boolean): Int
- Definition Classes
- SeqOps
- final def size: Int
- Definition Classes
- SeqOps → IterableOnceOps
- final def sizeCompare(that: Iterable[_]): Int
- Definition Classes
- SeqOps → IterableOps
- final def sizeCompare(otherSize: Int): Int
- Definition Classes
- SeqOps → IterableOps
- final def sizeIs: SizeCompareOps
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def slice(from: Int, until: Int): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): Iterator[QueryParams]
- Definition Classes
- IterableOps
- def sliding(size: Int): Iterator[QueryParams]
- Definition Classes
- IterableOps
- def sortBy[B](f: ((String, String)) => B)(implicit ord: Ordering[B]): QueryParams
- Definition Classes
- SeqOps
- def sortWith(lt: ((String, String), (String, String)) => Boolean): QueryParams
- Definition Classes
- SeqOps
- def sorted[B >: (String, String)](implicit ord: Ordering[B]): QueryParams
- Definition Classes
- SeqOps
- def span(p: ((String, String)) => Boolean): (QueryParams, QueryParams)
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (QueryParams, QueryParams)
- Definition Classes
- IterableOps → IterableOnceOps
- def startsWith[B >: (String, String)](that: IterableOnce[B], offset: Int): Boolean
- Definition Classes
- SeqOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[(String, String), S]): S
- Definition Classes
- IterableOnce
- def sum[B >: (String, String)](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tail: QueryParams
- Definition Classes
- IterableOps
- def tails: Iterator[QueryParams]
- Definition Classes
- IterableOps
- def take(n: Int): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def takeRight(n: Int): QueryParams
- Definition Classes
- IterableOps
- def takeWhile(p: ((String, String)) => Boolean): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def tapEach[U](f: ((String, String)) => U): QueryParams
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[(String, String), C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: (String, String)](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: (String, String)]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toIndexedSeq: IndexedSeq[(String, String)]
- Definition Classes
- IterableOnceOps
- def toIterable: Iterable[(String, String)]
- Definition Classes
- QueryParamsBase → IterableOps
- def toList: List[(String, String)]
- Definition Classes
- IterableOnceOps
- def toMap: Map[String, Seq[String]]
Convert to a Map[String, Seq[String]]
- def toMap[K, V](implicit ev: <:<[(String, String), (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- def toQueryString(): String
Create a valid query string using the current parameters (everything after the ?).
Create a valid query string using the current parameters (everything after the ?).
e.g.: foo=bar&hello=world
- def toSeq: Seq[(String, String)]
- Definition Classes
- IterableOnceOps
- def toSet[B >: (String, String)]: Set[B]
- Definition Classes
- IterableOnceOps
- def toString(): String
An alias for toQueryString
An alias for toQueryString
- Definition Classes
- QueryParams → AnyRef → Any
- def toVector: Vector[(String, String)]
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: ((String, String)) => Iterable[B]): Seq[Seq[B]]
- Definition Classes
- IterableOps
- def unzip[A1, A2](implicit asPair: ((String, String)) => (A1, A2)): (Seq[A1], Seq[A2])
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: ((String, String)) => (A1, A2, A3)): (Seq[A1], Seq[A2], Seq[A3])
- Definition Classes
- IterableOps
- def updated(kvPairs: (String, String)*): QueryParams
Update multiple key/value pairs
- def updated(other: QueryParams): QueryParams
Update multiple key/value pairs
- def updated(key: String, value: String): QueryParams
If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.
- def updated(key: String): QueryParams
Make sure the key (without a value) exists
- def updated[B >: (String, String)](index: Int, elem: B): Seq[B]
- Definition Classes
- SeqOps
- def view: SeqView[(String, String)]
- Definition Classes
- SeqOps → IterableOps
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withFilter(p: ((String, String)) => Boolean): WithFilter[(String, String), Seq]
- Definition Classes
- IterableOps
- def withLowerKeys: QueryParams
Convert all keys to lower case
- def withPrefixedKeys(prefix: String): QueryParams
Add a prefix to each key
- def withoutBlankValues(): QueryParams
Remove any params with blank values
Remove any params with blank values
- returns
A new QueryParams instance without blank values
- def zip[B](that: IterableOnce[B]): Seq[((String, String), B)]
- Definition Classes
- IterableOps
- def zipAll[A1 >: (String, String), B](that: Iterable[B], thisElem: A1, thatElem: B): Seq[(A1, B)]
- Definition Classes
- IterableOps
- def zipWithIndex: Seq[((String, String), Int)]
- Definition Classes
- IterableOps → IterableOnceOps
Deprecated Value Members
- final def /:[B](z: B)(op: (B, (String, String)) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: ((String, String), B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, (String, String)) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregate
is not relevant for sequential collections. UsefoldLeft(z)(seqop)
instead.
- def companion: IterableFactory[Seq]
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- final def copyToBuffer[B >: (String, String)](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- def hasDefiniteSize: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
- final def prefixLength(p: ((String, String)) => Boolean): Int
- Definition Classes
- SeqOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use segmentLength instead of prefixLength
- final def repr: QueryParams
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside
- def reverseMap[B](f: ((String, String)) => B): Seq[B]
- Definition Classes
- SeqOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)
- final def toIterator: Iterator[(String, String)]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: Stream[(String, String)]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: Traversable[(String, String)]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use toIterable instead
- final def union[B >: (String, String)](that: Seq[B]): Seq[B]
- Definition Classes
- SeqOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
concat
instead
- def view(from: Int, until: Int): View[(String, String)]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)