Class/Object

org.scanamo

DynamoObject

Related Docs: object DynamoObject | package scanamo

Permalink

sealed abstract class DynamoObject extends Product with Serializable

A DynamoObject is a map of strings to values that can be embedded into an AttributeValue.

Self Type
DynamoObject
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamoObject
  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

    Permalink
    Definition Classes
    Equals
  2. abstract def internalToMap: Map[String, DynamoValue]

    Permalink
    Attributes
    protected
  3. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product

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 +(x: (String, DynamoValue)): DynamoObject

    Permalink

    Operator alias for add

  4. final def -(key: String): DynamoObject

    Permalink

    Operator alias for remove

  5. final def <>(that: DynamoObject): DynamoObject

    Permalink

    Operator alias for concat

  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. final def add(key: String, value: DynamoValue): DynamoObject

    Permalink

    Add an entry to the map or overwrites the existing value if there

  8. final def apply(key: String): Option[DynamoValue]

    Permalink

    Gets the value mapped to key if it exists

  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def concat(that: DynamoObject): DynamoObject

    Permalink

    Concatenates two maps

  12. final def contains(key: String): Boolean

    Permalink

    Checks if the map contains a certain key

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def equals(that: Any): Boolean

    Permalink
    Definition Classes
    DynamoObject → Equals → AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def hashCode(): Int

    Permalink
    Definition Classes
    DynamoObject → AnyRef → Any
  18. final def isEmpty: Boolean

    Permalink

    Checks if the map is empty

  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def keys: Iterable[String]

    Permalink

    Gets the list of keys in the map

  21. final def mapKeys(f: (String) ⇒ String): DynamoObject

    Permalink

    Transforms the map by assigning values to new keys

  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def nonEmpty: Boolean

    Permalink

    Chekcs if the map is not empty

  24. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  26. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  27. def productPrefix: String

    Permalink
    Definition Classes
    Product
  28. final def remove(key: String): DynamoObject

    Permalink

    Remove an entry from the map if there

  29. final def size: Int

    Permalink

    Gets the size of the map

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. final def toAttributeValue: AttributeValue

    Permalink

    Make an AWS SDK value out of this map

  32. final def toDynamoValue: DynamoValue

    Permalink

    Make a value out of this map

  33. final def toExpressionAttributeValues: Option[Map[String, AttributeValue]]

    Permalink

    Builds a map where the keys are transformed to match the convention for expression attribute values in DynamoDB operations See https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.ExpressionAttributeValues.html

  34. final def toJavaMap: Map[String, AttributeValue]

    Permalink
  35. final def toMap[V](implicit D: DynamoFormat[V]): Either[DynamoReadError, Map[String, V]]

    Permalink

    Builds a scala.collection.Map if this map is made entirely of values of type V

  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. final def values: Iterable[DynamoValue]

    Permalink

    Gets the list of values in the map

  38. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped