Class/Object

io.lemonlabs.uri

QueryString

Related Docs: object QueryString | package uri

Permalink

case class QueryString(params: Vector[(String, Option[String])])(implicit config: UriConfig = UriConfig.default) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryString
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryString(params: Vector[(String, Option[String])])(implicit config: UriConfig = UriConfig.default)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addParam(kv: (String, String)): QueryString

    Permalink

    Adds a new Query String parameter key-value pair.

  5. def addParam(k: String): QueryString

    Permalink

    Adds a new parameter key with no value, e.g.

    Adds a new parameter key with no value, e.g. ?param

    returns

    A new instance with the new parameter added

  6. def addParam(k: String, v: Option[String]): QueryString

    Permalink

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value Pairs without values, such as ("param", None), represent query params without values, i.e ?param

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value Pairs without values, such as ("param", None), represent query params without values, i.e ?param

    returns

    A new instance with the new parameter added

  7. def addParam(k: String, v: String): QueryString

    Permalink

    Adds a new parameter key-value pair.

    Adds a new parameter key-value pair.

    returns

    A new instance with the new parameter added

  8. def addParamOptionValue(kv: (String, Option[String])): QueryString

    Permalink

    Adds a new Query String parameter key-value pair.

    Adds a new Query String parameter key-value pair.

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value Pairs without values, such as ("param", None), represent query params without values, i.e ?param

  9. def addParams(kvs: GenTraversable[(String, String)]): QueryString

    Permalink

    Adds all the specified key-value pairs as parameters to the query

  10. def addParams(kvs: (String, String)*): QueryString

    Permalink

    Adds all the specified key-value pairs as parameters to the query

  11. def addParams(other: QueryString): QueryString

    Permalink

    Adds all the specified key-value pairs as parameters to the query

  12. def addParamsOptionValues(kvs: GenTraversable[(String, Option[String])]): QueryString

    Permalink

    Adds all the specified key-value pairs as parameters to the query

    Adds all the specified key-value pairs as parameters to the query

    Pairs with values, such as ("param", Some("value")), represent query params with values, i.e ?param=value Pairs without values, such as ("param", None), represent query params without values, i.e ?param

  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def collect(f: PartialFunction[(String, Option[String]), (String, Option[String])]): QueryString

    Permalink

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Parameters not defined in the PartialFunction will be removed.

    f

    A function that returns a new Parameter when applied to each Parameter

  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def filter(f: ((String, Option[String])) ⇒ Boolean): QueryString

    Permalink

    Filters out just the parameters for which the provided function holds true

  18. def filterNames(f: (String) ⇒ Boolean): QueryString

    Permalink

    Filters out just the parameters for which the provided function holds true when applied to the parameter name

  19. def filterOptionValues(f: (Option[String]) ⇒ Boolean): QueryString

    Permalink

    Filters out just the parameters for which the provided function holds true when applied to the parameter value

  20. def filterValues(f: (String) ⇒ Boolean): QueryString

    Permalink

    Filters out just the parameters for which the provided function holds true when applied to the parameter value

  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flatMap(f: ((String, Option[String])) ⇒ GenTraversableOnce[(String, Option[String])]): QueryString

    Permalink

    Transforms each parameter by applying the specified Function

    Transforms each parameter by applying the specified Function

    f

    A function that returns a collection of Parameters when applied to each parameter

  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def isEmpty: Boolean

    Permalink
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def map(f: PartialFunction[(String, Option[String]), (String, Option[String])]): QueryString

    Permalink

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Transforms the Query String by applying the specified PartialFunction to each Query String Parameter

    Parameters not defined in the PartialFunction will be left as-is.

    f

    A function that returns a new Parameter when applied to each Parameter

  27. def mapNames(f: (String) ⇒ String): QueryString

    Permalink

    Transforms each parameter name by applying the specified Function

  28. def mapValues(f: (String) ⇒ String): QueryString

    Permalink

    Transforms each parameter value by applying the specified Function

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

    Permalink
    Definition Classes
    AnyRef
  30. def nonEmpty: Boolean

    Permalink
  31. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. def param(key: String): Option[String]

    Permalink
  34. lazy val paramMap: Map[String, Vector[String]]

    Permalink
  35. def params(key: String): Vector[Option[String]]

    Permalink
  36. val params: Vector[(String, Option[String])]

    Permalink
  37. def removeAll(k: GenTraversableOnce[String]): QueryString

    Permalink

    Removes all Query String parameters with a name in the specified list

    Removes all Query String parameters with a name in the specified list

    k

    Names of Query String parameter(s) to remove

  38. def removeAll(k: String*): QueryString

    Permalink

    Removes all Query String parameters with a name in the specified list

    Removes all Query String parameters with a name in the specified list

    k

    Names of Query String parameter(s) to remove

  39. def removeAll(k: String): QueryString

    Permalink

    Removes all Query String parameters with the specified key

    Removes all Query String parameters with the specified key

    k

    Key for the Query String parameter(s) to remove

  40. def replaceAll(k: String, v: String): QueryString

    Permalink

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    k

    Key for the Query String parameter(s) to replace

    v

    value to replace with

    returns

    A new QueryString with the result of the replace

  41. def replaceAll(k: String, v: Option[String]): QueryString

    Permalink

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    Replaces the all existing Query String parameters with the specified key with a single Query String parameter with the specified value.

    If the value passed in is None, then all Query String parameters with the specified key are replaces with a valueless query param. E.g. replaceParams("q", None) would turn ?q=1&q=2 into ?q

    k

    Key for the Query String parameter(s) to replace

    v

    value to replace with

    returns

    A new QueryString with the result of the replace

  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def toString(): String

    Permalink
    Definition Classes
    QueryString → AnyRef → Any
  44. def toStringRaw: String

    Permalink

    Returns the query string with no encoding taking place (e.g.

    Returns the query string with no encoding taking place (e.g. non ASCII characters will not be percent encoded)

    returns

    String containing the raw query string for this Uri

  45. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped