implicit object bindableShort extends Parsing[Short]

QueryString binder for Short.

Source
Binders.scala
Linear Supertypes
Parsing[Short], QueryStringBindable[Short], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. bindableShort
  2. Parsing
  3. QueryStringBindable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def bind(key: String, params: Map[String, Seq[String]]): Option[Either[String, Short]]

    Bind a query string parameter.

    Bind a query string parameter.

    key

    Parameter key

    params

    QueryString data

    returns

    None if the parameter was not present in the query string data. Otherwise, returns Some of either Right of the parameter value, or Left of an error message if the binding failed.

    Definition Classes
    QueryStringBindable
  2. def javascriptUnbind: String

    Javascript function to unbind in the Javascript router.

    Javascript function to unbind in the Javascript router.

    Definition Classes
    QueryStringBindable
  3. def transform[B](toB: (Short) => B, toA: (B) => Short): QueryStringBindable[B]

    Transform this QueryStringBindable[A] to QueryStringBindable[B]

    Transform this QueryStringBindable[A] to QueryStringBindable[B]

    Definition Classes
    QueryStringBindable
  4. def unbind(key: String, value: Short): String

    Unbind a query string parameter.

    Unbind a query string parameter.

    key

    Parameter key

    value

    Parameter value.

    returns

    a query string fragment containing the key and its value. E.g. "foo=42"

    Definition Classes
    QueryStringBindable