object DynamoFormat extends PlatformSpecificFormat with FormatDerivation

Linear Supertypes
FormatDerivation, PlatformSpecificFormat, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamoFormat
  2. FormatDerivation
  3. PlatformSpecificFormat
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ObjectFormat[T] extends DynamoFormat[T]

    DynamoFormats for object-like structures

    DynamoFormats for object-like structures

    Note

    All data types used as the carrier type in Table operations should derive an instance from this class

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. implicit val BigDecimalSetFormat: DynamoFormat[Set[BigDecimal]]
  5. def apply[T](implicit D: DynamoFormat[T]): DynamoFormat[T]
  6. implicit def arrayFormat[T](implicit arg0: ClassTag[T], f: DynamoFormat[T]): DynamoFormat[Array[T]]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. implicit val bigDecimalFormat: DynamoFormat[BigDecimal]
  9. implicit val booleanFormat: DynamoFormat[Boolean]
  10. def build[T](r: (DynamoValue) ⇒ Either[DynamoReadError, T], w: (T) ⇒ DynamoValue): DynamoFormat[T]
  11. implicit val byteArrayFormat: DynamoFormat[Array[Byte]]
  12. implicit val byteBufferFormat: DynamoFormat[ByteBuffer]
  13. implicit val byteFormat: DynamoFormat[Byte]
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  15. def coercedXmap[A, B, T >: Null <: Throwable](read: (B) ⇒ A, write: (A) ⇒ B)(implicit arg0: DynamoFormat[B], arg1: ClassTag[T]): DynamoFormat[A]

    Returns a DynamoFormat for the case where A can always be converted B, with write, but read may throw an exception for some value of B

  16. implicit val doubleFormat: DynamoFormat[Double]
  17. implicit val doubleSetFormat: DynamoFormat[Set[Double]]
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. implicit val floatFormat: DynamoFormat[Float]
  21. implicit val floatSetFormat: DynamoFormat[Set[Float]]
  22. implicit def generic[A](implicit A: Exported[DynamoFormat[A]]): DynamoFormat[A]
    Definition Classes
    PlatformSpecificFormat
  23. implicit def genericSet[T](implicit arg0: DynamoFormat[T]): DynamoFormat[Set[T]]
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. implicit val instantAsLongFormat: DynamoFormat[Instant]

    Format for dealing with points in time stored as the number of milliseconds since Epoch.

  27. implicit val intFormat: DynamoFormat[Int]
  28. implicit val intSetFormat: DynamoFormat[Set[Int]]
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. def iso[A, B](r: (B) ⇒ A, w: (A) ⇒ B)(implicit f: DynamoFormat[B]): DynamoFormat[A]

    Returns a DynamoFormat for the case where A and B are isomorphic, i.e.

    Returns a DynamoFormat for the case where A and B are isomorphic, i.e. an A can always be converted to a B and vice versa.

    If there are some values of B that have no corresponding value in A, use DynamoFormat.xmap or DynamoFormat.coercedXmap.

  31. implicit val javaListFormat: DynamoFormat[List[DynamoValue]]
  32. implicit def listFormat[T](implicit f: DynamoFormat[T]): DynamoFormat[List[T]]
  33. implicit val longFormat: DynamoFormat[Long]
  34. implicit val longSetFormat: DynamoFormat[Set[Long]]
  35. implicit def mapFormat[V](implicit f: DynamoFormat[V]): DynamoFormat[Map[String, V]]
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  39. implicit val offsetDateTimeFormat: DynamoFormat[OffsetDateTime]

    Format for dealing with date-times with an offset from UTC.

  40. implicit def optionFormat[T](implicit f: DynamoFormat[T]): DynamoFormat[Option[T]]
  41. implicit def seqFormat[T](implicit f: DynamoFormat[T]): DynamoFormat[Seq[T]]
  42. implicit val shortFormat: DynamoFormat[Short]
  43. implicit def someFormat[T](implicit f: DynamoFormat[T]): DynamoFormat[Some[T]]

    This ensures that if, for instance, you specify an update with Some(5) rather than making the type of Option explicit, it doesn't fall back to auto-derivation

  44. implicit val stringFormat: DynamoFormat[String]
  45. implicit val stringSetFormat: DynamoFormat[Set[String]]
  46. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  47. def toString(): String
    Definition Classes
    AnyRef → Any
  48. implicit val uuidFormat: DynamoFormat[UUID]
  49. implicit def vectorFormat[T](implicit f: DynamoFormat[T]): DynamoFormat[Vector[T]]
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  52. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. def xmap[A, B](r: (B) ⇒ Either[DynamoReadError, A], w: (A) ⇒ B)(implicit f: DynamoFormat[B]): DynamoFormat[A]

    Returns a DynamoFormat for the case where A and B form an epimorphism, i.e.

    Returns a DynamoFormat for the case where A and B form an epimorphism, i.e. an A can always be converted to a B but the opposite is not necessarily true.

  54. implicit val zonedDateTimeFormat: DynamoFormat[ZonedDateTime]

    Format for dealing with date-times with a time zone in the ISO-8601 calendar system.

  55. object ObjectFormat

Deprecated Value Members

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

Inherited from FormatDerivation

Inherited from PlatformSpecificFormat

Inherited from AnyRef

Inherited from Any

Ungrouped