implicit object UuidWrites extends Writes[UUID]
Ordering
- Alphabetic
- By Inheritance
Inherited
- UuidWrites
- Writes
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def contramap[B](f: (B) => UUID): Writes[B]
Returns a new instance that first converts a
B
value to aA
one, before converting thisA
value into a JsValue. - def narrow[B <: UUID]: Writes[B]
Narrows to any
B
super-type ofA
.Narrows to any
B
super-type ofA
.- Definition Classes
- Writes
- def transform(transformer: [JsValue]): [UUID]
Transforms the resulting JsValue using a
Writes[JsValue]
. - def transform(transformer: () => JsValue): [UUID]
Transforms the resulting JsValue using transformer function.
- def writes(u: UUID): JsString
Converts the
A
value into a JsValue.
Serializer for java.util.UUID