Class/Object

org.scanamo

DynamoValue

Related Docs: object DynamoValue | package scanamo

Permalink

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

    Permalink
    Definition Classes
    Equals
  2. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  3. 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 ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def as[A](implicit A: DynamoFormat[A]): Either[DynamoReadError, A]

    Permalink

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

  5. final def asArray: Option[DynamoArray]

    Permalink

    Produces the underlying array, if applies

  6. final def asBoolean: Option[Boolean]

    Permalink

    Produces the underlying boolean, if applies

  7. final def asByteBuffer: Option[ByteBuffer]

    Permalink

    Produces the underlying byte buffer, if applies

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. final def asNull: Option[Unit]

    Permalink

    Produces () is this object is null

  10. final def asNumber: Option[String]

    Permalink

    Produces the underlying number, if applies

  11. final def asObject: Option[DynamoObject]

    Permalink

    Produces the underlying object, if applies

  12. final def asString: Option[String]

    Permalink

    Produces the underlying string, if applies

  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isArray: Boolean

    Permalink

    Checks whether this object rerpresents an array

  20. final def isBoolean: Boolean

    Permalink

    Checks whether this object represents a boolean

  21. final def isByteBuffer: Boolean

    Permalink

    Checks whether this object represents a byte buffer

  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. final def isNull: Boolean

    Permalink

    Checks whether this object represents the null object

  24. final def isNumber: Boolean

    Permalink

    Checks whether this object represents a number

  25. final def isObject: Boolean

    Permalink

    Checks whether this object rerpresents a composite object

  26. final def isString: Boolean

    Permalink

    Checks whether this object represents a string

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

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

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

    Permalink
    Definition Classes
    AnyRef
  30. final def orElse(that: DynamoValue): DynamoValue

    Permalink

    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 _)

  31. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  32. def productPrefix: String

    Permalink
    Definition Classes
    Product
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toAttributeValue: AttributeValue

    Permalink

    Produces the AttributeValue isomorphic to this DynamoValue

  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def withArray(f: (DynamoArray) ⇒ DynamoValue): DynamoValue

    Permalink

    Transforms into a new value if this one is an array

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

    Permalink

    Transforms into a new value if this one is a boolean

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

    Permalink

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

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

    Permalink

    Transforms into a new value if this one is null

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

    Permalink

    Transforms into a new value if this one is a number

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

    Permalink

    Transforms into a new value if this one is a map

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

    Permalink

    Transforms into a new value if this one is a string

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped