object semiauto
Semi-automatic codec derivation.
This object provides helpers for creating io.circe.Decoder and io.circe.Encoder.AsObject instances for case classes, "incomplete" case classes, sealed trait hierarchies, etc.
Typical usage will look like the following:
import io.circe._, io.circe.generic.semiauto._ case class Foo(i: Int, p: (String, Double)) object Foo { implicit val decodeFoo: Decoder[Foo] = deriveConfiguredDecoder[Foo] implicit val encodeFoo: Encoder.AsObject[Foo] = deriveConfiguredEncoder[Foo] }
- Source
- semiauto.scala
- Alphabetic
- By Inheritance
- semiauto
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final class DerivationHelper[A] extends AnyRef
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def deriveConfiguredCodec[A](implicit codec: Lazy[ConfiguredAsObjectCodec[A]]): AsObject[A]
- final def deriveConfiguredDecoder[A](implicit decode: Lazy[ConfiguredDecoder[A]]): Decoder[A]
- final def deriveConfiguredEncoder[A](implicit encode: Lazy[ConfiguredAsObjectEncoder[A]]): AsObject[A]
- final def deriveConfiguredFor[A]: DerivationHelper[A]
- def deriveEnumerationCodec[A](implicit codec: Lazy[EnumerationCodec[A]]): Codec[A]
Derive a codec for a sealed trait hierarchy made up of case objects.
Derive a codec for a sealed trait hierarchy made up of case objects.
Note that this differs from the usual derived encoder in that the leaves of the ADT are represented as JSON strings.
- def deriveEnumerationDecoder[A](implicit decode: Lazy[EnumerationDecoder[A]]): Decoder[A]
Derive a decoder for a sealed trait hierarchy made up of case objects.
Derive a decoder for a sealed trait hierarchy made up of case objects.
Note that this differs from the usual derived decoder in that the leaves of the ADT are represented as JSON strings.
- def deriveEnumerationEncoder[A](implicit encode: Lazy[EnumerationEncoder[A]]): Encoder[A]
Derive an encoder for a sealed trait hierarchy made up of case objects.
Derive an encoder for a sealed trait hierarchy made up of case objects.
Note that this differs from the usual derived encoder in that the leaves of the ADT are represented as JSON strings.
- final def deriveExtrasCodec[A](implicit codec: Lazy[ConfiguredAsObjectCodec[A]]): ExtrasAsObjectCodec[A]
- final def deriveExtrasDecoder[A](implicit decode: Lazy[ConfiguredDecoder[A]]): ExtrasDecoder[A]
- final def deriveExtrasEncoder[A](implicit encode: Lazy[ConfiguredAsObjectEncoder[A]]): AsObject[A]
- def deriveUnwrappedCodec[A](implicit codec: Lazy[UnwrappedCodec[A]]): Codec[A]
Derive a codec for a value class.
- def deriveUnwrappedDecoder[A](implicit decode: Lazy[UnwrappedDecoder[A]]): Decoder[A]
Derive a decoder for a value class.
- def deriveUnwrappedEncoder[A](implicit encode: Lazy[UnwrappedEncoder[A]]): Encoder[A]
Derive an encoder for a value class.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- final def deriveCodec[A](implicit codec: Lazy[ConfiguredAsObjectCodec[A]]): AsObject[A]
- Annotations
- @deprecated
- Deprecated
(Since version 0.12.0) Use deriveConfiguredCodec
- final def deriveDecoder[A](implicit decode: Lazy[ConfiguredDecoder[A]]): Decoder[A]
- Annotations
- @deprecated
- Deprecated
(Since version 0.12.0) Use deriveConfiguredDecoder
- final def deriveEncoder[A](implicit encode: Lazy[ConfiguredAsObjectEncoder[A]]): AsObject[A]
- Annotations
- @deprecated
- Deprecated
(Since version 0.12.0) Use deriveConfiguredEncoder
- final def deriveFor[A]: DerivationHelper[A]
- Annotations
- @deprecated
- Deprecated
(Since version 0.12.0) Use deriveConfiguredFor