Trait/Object

com.drivetribe.circe.hinting

HintedDecoder

Related Docs: object HintedDecoder | package hinting

Permalink

trait HintedDecoder[T] extends Decoder[T]

Linear Supertypes
Decoder[T], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HintedDecoder
  2. Decoder
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(c: HCursor): Result[T]

    Permalink
    Definition Classes
    Decoder
  2. abstract def hints: Set[String]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def accumulating: AccumulatingDecoder[T]

    Permalink
    Definition Classes
    Decoder
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def decodeJson(j: Json): Result[T]

    Permalink
    Definition Classes
    Decoder
  8. final def either[B](decodeB: Decoder[B]): Decoder[Either[T, B]]

    Permalink
    Definition Classes
    Decoder
  9. final def emap[B](f: (T) ⇒ Either[String, B]): Decoder[B]

    Permalink
    Definition Classes
    Decoder
  10. final def emapTry[B](f: (T) ⇒ Try[B]): Decoder[B]

    Permalink
    Definition Classes
    Decoder
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def flatMap[B](f: (T) ⇒ Decoder[B]): Decoder[B]

    Permalink
    Definition Classes
    Decoder
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def handleErrorWith(f: (DecodingFailure) ⇒ Decoder[T]): Decoder[T]

    Permalink
    Definition Classes
    Decoder
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def kleisli: Kleisli[Result, HCursor, T]

    Permalink
    Definition Classes
    Decoder
  20. final def map[B](f: (T) ⇒ B): Decoder[B]

    Permalink
    Definition Classes
    Decoder
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def or[AA >: T](d: ⇒ Decoder[AA]): Decoder[AA]

    Permalink
    Definition Classes
    Decoder
  25. final def prepare(f: (ACursor) ⇒ ACursor): Decoder[T]

    Permalink
    Definition Classes
    Decoder
  26. final def product[B](fb: Decoder[B]): Decoder[(T, B)]

    Permalink
    Definition Classes
    Decoder
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def tryDecode(c: ACursor): Result[T]

    Permalink
    Definition Classes
    Decoder
  30. def tryDecodeAccumulating(c: ACursor): Result[T]

    Permalink
    Definition Classes
    Decoder
  31. final def validate(pred: (HCursor) ⇒ Boolean, message: ⇒ String): Decoder[T]

    Permalink
    Definition Classes
    Decoder
  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def withErrorMessage(message: String): Decoder[T]

    Permalink
    Definition Classes
    Decoder

Deprecated Value Members

  1. final def and[B](fb: Decoder[B]): Decoder[(T, B)]

    Permalink
    Definition Classes
    Decoder
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Use product

  2. final def split[B](d: Decoder[B]): (Either[HCursor, HCursor]) ⇒ Result[Either[T, B]]

    Permalink
    Definition Classes
    Decoder
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9.0) Use cats.arrow.Choice

Inherited from Decoder[T]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped