final case class JsonCodec[A](encoder: JsonEncoder[A], decoder: JsonDecoder[A]) extends Product with Serializable
A JsonCodec[A]
instance has the ability to encode values of type A
into JSON, together with
the ability to decode such JSON into values of type A
.
Instances of this trait should satisfy round-tripping laws: that is, for every value, instances must be able to successfully encode the value into JSON, and then successfully decode the same value from such JSON.
For more information, see JsonDecoder and JsonEncoder.
{{ val intCodec: JsonCodec[Int] = JsonCodec[Int]
intCodec.encodeJson(intCodec.encodeJson(42)) == Right(42) }}
- Self Type
- JsonCodec[A]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonCodec
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new JsonCodec(encoder: JsonEncoder[A], decoder: JsonDecoder[A])
Value Members
- final def *>[B](that: => JsonCodec[B])(implicit ev: <:<[Unit, A]): JsonCodec[B]
- final def <*(that: => JsonCodec[Unit]): JsonCodec[A]
- final def <*>[B](that: => JsonCodec[B]): JsonCodec[(A, B)]
An alias for JsonCodec#zip.
- final def <+>[B](that: => JsonCodec[B]): JsonCodec[Either[A, B]]
An alias for JsonCodec#orElseEither.
- final def <>(that: => JsonCodec[A]): JsonCodec[A]
An alias for JsonCodec#orElse.
- final def decodeJson(str: CharSequence): Either[String, A]
- val decoder: JsonDecoder[A]
- final def encodeJson(a: A, indent: Option[Int]): CharSequence
- val encoder: JsonEncoder[A]
- final def orElse(that: => JsonCodec[A]): JsonCodec[A]
- final def orElseEither[B](that: => JsonCodec[B]): JsonCodec[Either[A, B]]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def transform[B](f: (A) => B, g: (B) => A): JsonCodec[B]
- final def transformOrFail[B](f: (A) => Either[String, B], g: (B) => A): JsonCodec[B]
- final def zip[B](that: => JsonCodec[B]): JsonCodec[(A, B)]
- final def zipLeft(that: => JsonCodec[Unit]): JsonCodec[A]
- final def zipRight[B](that: => JsonCodec[B])(implicit ev: <:<[Unit, A]): JsonCodec[B]