object Decode extends DecodeDerivation

Linear Supertypes
DecodeDerivation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Decode
  2. DecodeDerivation
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Typeclass[T] = Decode[T]
    Definition Classes
    DecodeDerivation

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def combine[T](ctx: CaseClass[Decode, T]): Decode[T]
    Definition Classes
    DecodeDerivation
  7. implicit val decodeBigDecimal: Decode[BigDecimal]
  8. implicit val decodeBigInt: Decode[BigInt]
  9. implicit val decodeBoolean: Decode[Boolean]
  10. implicit val decodeByte: Decode[Byte]
  11. implicit val decodeChar: Decode[Char]
  12. implicit val decodeDouble: Decode[Double]
  13. implicit val decodeDuration: Decode[Duration]
  14. implicit def decodeEither[L, R](implicit arg0: Decode[L], arg1: Decode[R]): Decode[Either[L, R]]
  15. implicit val decodeFile: Decode[File]
  16. implicit val decodeFloat: Decode[Float]
  17. implicit val decodeInstant: Decode[Instant]
  18. implicit val decodeInt: Decode[Int]
  19. implicit def decodeList[A](implicit arg0: Decode[A]): Decode[List[A]]
  20. implicit val decodeLocalDate: Decode[LocalDate]
  21. implicit val decodeLocalDateTime: Decode[LocalDateTime]
  22. implicit val decodeLocalTime: Decode[LocalTime]
  23. implicit val decodeLong: Decode[Long]
  24. implicit val decodeOffsetDateTime: Decode[OffsetDateTime]
  25. implicit val decodeOffsetTime: Decode[OffsetTime]
  26. implicit def decodeOption[A](implicit arg0: Decode[A]): Decode[Option[A]]
  27. implicit val decodeShort: Decode[Short]
  28. implicit val decodeString: Decode[String]
  29. implicit val decodeUnit: Decode[Unit]
  30. implicit val decodeUri: Decode[URI]
  31. implicit val decodeUrl: Decode[URL]
  32. implicit val decodeUuid: Decode[UUID]
  33. implicit macro def deriveDecode[T](implicit u: AutoUnlockD): Decode[T]
  34. def dispatch[T](ctx: SealedTrait[Decode, T]): Decode[T]
    Definition Classes
    DecodeDerivation
  35. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  37. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  38. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  39. def instance[A](f: (DynamicRepr) ⇒ Result[A]): Decode[A]

    Create your own typeclass instance with this method.

  40. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  41. def macroDeriveDecode[T](c: Context)(u: scala.reflect.macros.whitebox.Context.Tree)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Tree
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  44. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  45. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def wrap[A, R](f: (A) ⇒ R)(implicit arg0: Decode[A]): Decode[R]

    For a function f, mapping a type A to R, create an instance of Decode that will map a DynamicRepr to R.

    For a function f, mapping a type A to R, create an instance of Decode that will map a DynamicRepr to R. This method can use your own instance of Decode for type A, enabling decoding of complex types.

  51. def wrapE[A, L, R](f: (A) ⇒ Either[L, R])(implicit arg0: Decode[A]): Decode[R]

    For a function f, mapping a type A to R, and that can fail, create an instance of Decode that will map a DynamicRepr to R.

    For a function f, mapping a type A to R, and that can fail, create an instance of Decode that will map a DynamicRepr to R. This method can use your own instance of Decode for type A, enabling decoding of complex types. The eventual error L will be wrapped in a WrappedError.

  52. def wrapO[A, R](f: (A) ⇒ Option[R])(implicit arg0: Decode[A]): Decode[R]

    For a function f, mapping a type A to maybe R, create an instance of Decode that will map a DynamicRepr to R.

    For a function f, mapping a type A to maybe R, create an instance of Decode that will map a DynamicRepr to R. This method can use your own instance of Decode for type A, enabling decoding of complex types. The absence of value R will be represented by a NilSmartConstructorError.

  53. def wrapT[A, R](f: (A) ⇒ Try[R])(implicit arg0: Decode[A]): Decode[R]

    For a function f, mapping a type A to R, and that can fail, create an instance of Decode that will map a DynamicRepr to R.

    For a function f, mapping a type A to R, and that can fail, create an instance of Decode that will map a DynamicRepr to R. This method can use your own instance of Decode for type A, enabling decoding of complex types. The eventual throwable error will be wrapped in a WrappedError.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from DecodeDerivation

Inherited from AnyRef

Inherited from Any

Ungrouped