com.nrinaudo.fetch

QueryString

class QueryString extends AnyRef

Represents an Url's query string.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. QueryString
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def &[T](param: (String, T))(implicit arg0: ValueWriter[T]): QueryString

    Sets the specified parameter to the specified value.

    Sets the specified parameter to the specified value.

    The main purpose of this method is to let application developers write code such as:

    new QueryString() & ("param1" -> "value1") & ("param2" -> "value2")

    Note that this method only accepts a single value, and will always replace any previous value for the specified name. If you need to specify the same parameter multiple times, use add instead.

    T

    type of the value to set.

    param

    tuple whose first entry if the parameter's name and second entry its value.

    returns

    an updated query string.

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def add[T](name: String, values: T*)(implicit arg0: ValueWriter[T]): QueryString

  8. def apply[T](name: String)(implicit arg0: ValueReader[T]): List[T]

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(p1: Any): Boolean

    Definition Classes
    QueryString → AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def first[T](name: String)(implicit arg0: ValueReader[T]): T

  15. def get[T](name: String)(implicit arg0: ValueReader[T]): Option[Try[List[T]]]

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

    Definition Classes
    AnyRef → Any
  17. def getFirst[T](name: String)(implicit arg0: ValueReader[T]): Option[Try[T]]

  18. def getFirstOpt[T](name: String)(implicit arg0: ValueReader[T]): Option[T]

  19. def getOpt[T](name: String)(implicit arg0: ValueReader[T]): Option[List[T]]

  20. def hashCode(): Int

    Definition Classes
    QueryString → AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

    Definition Classes
    AnyRef
  25. def set[T](name: String, values: T*)(implicit arg0: ValueWriter[T]): QueryString

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

    Definition Classes
    AnyRef
  27. lazy val toString: String

    Definition Classes
    QueryString → AnyRef → Any
  28. val values: Map[String, List[String]]

  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def writeTo(builder: StringBuilder): StringBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped