DefaultJodaLocalDateWrites

object DefaultJodaLocalDateWrites extends Writes[LocalDate]
Default Serializer LocalDate -> JsString(ISO8601 format (yyyy-MM-dd))
trait Writes[LocalDate]
class Object
trait Matchable
class Any

Value members

Methods

def writes(d: LocalDate): JsValue

Inherited methods

def contramap[B](f: B => A): Writes[B]
Returns a new instance that first converts a B value to a A one,
before converting this A value into a JsValue.
Inhertied from
Writes
def transform(transformer: Writes[JsValue]): Writes[A]
Transforms the resulting JsValue using a Writes[JsValue].
Inhertied from
Writes
def transform(transformer: JsValue => JsValue): Writes[A]
Transforms the resulting JsValue using transformer function.
Inhertied from
Writes
def narrow[B <: A]: Writes[B]
Narrows to any B super-type of A.
Inhertied from
Writes