DefaultJodaLocalTimeWrites

object DefaultJodaLocalTimeWrites extends Writes[LocalTime]

Default Serializer LocalDate -> JsString(ISO8601 format (HH:mm:ss.SSS))

trait Writes[LocalTime]
class Object
trait Matchable
class Any

Value members

Concrete methods

def writes(d: LocalTime): JsValue

Inherited methods

def contramap[B](f: B => LocalTime): Writes[B]

Returns a new instance that first converts a B value to a A one, before converting this A value into a JsValue.

Returns a new instance that first converts a B value to a A one, before converting this A value into a JsValue.

Inherited from:
Writes
def narrow[B <: LocalTime]: Writes[B]

Narrows to any B super-type of A.

Narrows to any B super-type of A.

Inherited from:
Writes
def transform(transformer: Writes[JsValue]): Writes[LocalTime]

Transforms the resulting JsValue using a Writes[JsValue].

Transforms the resulting JsValue using a Writes[JsValue].

Inherited from:
Writes
def transform(transformer: JsValue => JsValue): Writes[LocalTime]

Transforms the resulting JsValue using transformer function.

Transforms the resulting JsValue using transformer function.

Inherited from:
Writes