Packages

  • package root
    Definition Classes
    root
  • package play

    Play framework.

    Play framework.

    Play

    http://www.playframework.com

    Definition Classes
    root
  • package api

    Contains the public API for Scala developers.

    Contains the public API for Scala developers.

    Access the current Play application
    import play.api.Play.current
    Read configuration
    val poolSize = configuration.getInt("engine.pool.size")
    Use the logger
    Logger.info("Hello!")
    Define a Plugin
    class MyPlugin(app: Application) extends Plugin
    Create adhoc applications (for testing)
    val application = Application(new File("."), this.getClass.getClassloader, None, Play.Mode.DEV)
    Definition Classes
    play
  • package mvc

    Contains the Controller/Action/Result API to handle HTTP requests.

    Contains the Controller/Action/Result API to handle HTTP requests.

    For example, a typical controller:

    class HomeController @Inject() (val controllerComponents: ControllerComponents) extends BaseController {
    
      def index = Action {
        Ok("It works!")
      }
    
    }
    Definition Classes
    api
  • object QueryStringBindable

    Default binders for Query String

    Default binders for Query String

    Definition Classes
    mvc
  • Parsing
  • bindableBoolean
  • bindableChar
  • bindableDouble
  • bindableFloat
  • bindableInt
  • bindableLong
  • bindableUUID

implicit object bindableChar extends QueryStringBindable[Char]

QueryString binder for Char.

Source
Binders.scala
Linear Supertypes
QueryStringBindable[Char], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. bindableChar
  2. QueryStringBindable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    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
    bindableCharQueryStringBindable
  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: (Char) ⇒ B, toA: (B) ⇒ Char): 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: Char): 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
    bindableCharQueryStringBindable