Packages

object Query

Source
Query.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Query
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type KeyValue = (String, Option[String])

Value Members

  1. def apply(xs: (String, Option[String])*): Query
  2. val blank: Query

    Represents a query string with no keys or values: ?

  3. implicit val catsInstancesForHttp4sQuery: Hash[Query] with Order[Query] with Show[Query]
  4. val empty: Query

    Represents the absence of a query string.

  5. def fromMap(map: Map[String, Seq[String]]): Query

    Build a Query from the Map structure

  6. def fromPairs(xs: (String, String)*): Query
  7. def fromVector(xs: Vector[(String, Option[String])]): Query
  8. def unsafeFromString(query: String): Query

    Generate a Query from its String representation

    Generate a Query from its String representation

    If parsing fails, the empty Query is returned

Deprecated Value Members

  1. def fromString(query: String): Query
    Annotations
    @deprecated
    Deprecated

    (Since version 0.22.0-M6) Use unsafeFromString instead