Packages

final class UrlForm extends AnyVal

Source
UrlForm.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UrlForm
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(kv: (String, String)): UrlForm
  4. def ++?[T](key: String, vals: Seq[T])(implicit arg0: QueryParamEncoder[T]): UrlForm
  5. def +?[T](key: String, value: Option[T])(implicit arg0: QueryParamEncoder[T]): UrlForm
  6. def +?[T](key: String, value: T)(implicit arg0: QueryParamEncoder[T]): UrlForm
  7. def ->[B](y: B): (UrlForm, B)
    Implicit
    This member is added by an implicit conversion from UrlForm to ArrowAssoc[UrlForm] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def ensuring(cond: (UrlForm) ⇒ Boolean, msg: ⇒ Any): UrlForm
    Implicit
    This member is added by an implicit conversion from UrlForm to Ensuring[UrlForm] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (UrlForm) ⇒ Boolean): UrlForm
    Implicit
    This member is added by an implicit conversion from UrlForm to Ensuring[UrlForm] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): UrlForm
    Implicit
    This member is added by an implicit conversion from UrlForm to Ensuring[UrlForm] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): UrlForm
    Implicit
    This member is added by an implicit conversion from UrlForm to Ensuring[UrlForm] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from UrlForm to StringFormat[UrlForm] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def get(key: String): Seq[String]
  16. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  17. def getFirst(key: String): Option[String]
  18. def getFirstOrElse(key: String, default: ⇒ String): String
  19. def getOrElse(key: String, default: ⇒ Seq[String]): Seq[String]
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def toString(): String
    Definition Classes
    UrlForm → Any
  22. def updateFormField[T](key: String, value: Option[T])(implicit ev: QueryParamEncoder[T]): UrlForm

    key

    name of the field

    value

    optional value of the field

    ev

    evidence of the existence of QueryParamEncoder[T]

    returns

    UrlForm updated as it is updated with updateFormField(key, v) if value is Some(v), otherwise it is unaltered

  23. def updateFormField[T](key: String, value: T)(implicit ev: QueryParamEncoder[T]): UrlForm

    key

    name of the field

    value

    value of the field

    ev

    evidence of the existence of QueryParamEncoder[T]

    returns

    UrlForm updated with key and value pair if key does not exist in values. Otherwise value will be added to the existing entry.

  24. def updateFormFields[T](key: String, vals: Seq[T])(implicit ev: QueryParamEncoder[T]): UrlForm

    key

    name of the field

    vals

    a sequence of values for the field

    ev

    evidence of the existence of QueryParamEncoder[T]

    returns

    UrlForm updated with key and vals if key does not exist in values, otherwise vals will be appended to the existing entry. If vals is empty, UrlForm will remain as is

  25. val values: Map[String, Seq[String]]
  26. def [B](y: B): (UrlForm, B)
    Implicit
    This member is added by an implicit conversion from UrlForm to ArrowAssoc[UrlForm] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from UrlForm to any2stringadd[UrlForm] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (urlForm: any2stringadd[UrlForm]).+(other)
    Definition Classes
    any2stringadd

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from UrlForm to any2stringadd[UrlForm]

Inherited by implicit conversion StringFormat from UrlForm to StringFormat[UrlForm]

Inherited by implicit conversion Ensuring from UrlForm to Ensuring[UrlForm]

Inherited by implicit conversion ArrowAssoc from UrlForm to ArrowAssoc[UrlForm]

Ungrouped