sealed abstract class DynamoValue extends Product with Serializable

A DynamoValue is a pure representation of an AttributeValue from the AWS SDK.

Self Type
DynamoValue
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamoValue
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def productArity: Int
    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete 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 as[A](implicit A: DynamoFormat[A]): Either[DynamoReadError, A]

    Transforms into a value of type A for which there is a codec, if applies

  5. final def asArray: Option[DynamoArray]

    Produces the underlying array, if applies

  6. final def asBoolean: Option[Boolean]

    Produces the underlying boolean, if applies

  7. final def asByteBuffer: Option[ByteBuffer]

    Produces the underlying byte buffer, if applies

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. final def asNull: Option[Unit]

    Produces () is this object is null

  10. final def asNumber: Option[String]

    Produces the underlying number, if applies

  11. final def asObject: Option[DynamoObject]

    Produces the underlying object, if applies

  12. final def asString: Option[String]

    Produces the underlying string, if applies

  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isArray: Boolean

    Checks whether this object rerpresents an array

  19. final def isBoolean: Boolean

    Checks whether this object represents a boolean

  20. final def isByteBuffer: Boolean

    Checks whether this object represents a byte buffer

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def isNull: Boolean

    Checks whether this object represents the null object

  23. final def isNumber: Boolean

    Checks whether this object represents a number

  24. final def isObject: Boolean

    Checks whether this object rerpresents a composite object

  25. final def isString: Boolean

    Checks whether this object represents a string

  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def orElse(that: DynamoValue): DynamoValue

    Returns this value if it isn't null, the provided one otherwise (which may be null too), this allows expressions like: v1 orElse v2 orElse v3 ...

    Returns this value if it isn't null, the provided one otherwise (which may be null too), this allows expressions like: v1 orElse v2 orElse v3 ... or even vs.foldLeft(nil)(_ orElse _)

  30. def productIterator: Iterator[Any]
    Definition Classes
    Product
  31. def productPrefix: String
    Definition Classes
    Product
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toAttributeValue: AttributeValue

    Produces the AttributeValue isomorphic to this DynamoValue

  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def withArray(f: (DynamoArray) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is an array

  39. final def withBoolean(f: (Boolean) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is a boolean

  40. final def withByteBuffer(f: (ByteBuffer) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is a byte buffer

  41. final def withNull(f: ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is null

  42. final def withNumber(f: (String) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is a number

  43. final def withObject(f: (DynamoObject) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is a map

  44. final def withString(f: (String) ⇒ DynamoValue): DynamoValue

    Transforms into a new value if this one is a string

Deprecated Value Members

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped