play.api.data.format

Contains the Format API used by Form.

For example, to define a custom formatter:

val signedIntFormat = new Formatter[Int] {

 def bind(key: String, data: Map[String, String]) = {
   stringFormat.bind(key, data).flatMap { value =>
     scala.util.control.Exception.allCatch[Int]
       .either(java.lang.Integer.parseInt(value))
       .left.map(e => Seq(FormError(key, "error.signedNumber", Nil)))
   }
 }

 def unbind(key: String, value: Long) = Map(
   key -> ((if (value<0) "-" else "+") + value)
 )
}

Attributes

Members list

Type members

Classlikes

object Formats

This object defines several default formatters.

This object defines several default formatters.

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
Formats.type
trait Formatter[T]

Handles field binding and unbinding.

Handles field binding and unbinding.

Attributes

Supertypes
class Object
trait Matchable
class Any