com.datastax.spark.connector

ScalaGettableData

trait ScalaGettableData extends AbstractGettableData

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ScalaGettableData
  2. AbstractGettableData
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def fieldNames: IndexedSeq[String]

    Attributes
    protected
    Definition Classes
    AbstractGettableData
  2. abstract def fieldValues: IndexedSeq[AnyRef]

    Attributes
    protected
    Definition Classes
    AbstractGettableData

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (ScalaGettableData, B)

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to ArrowAssoc[ScalaGettableData] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains(name: String): Boolean

    Returns true if column with given name is defined and has an entry in the underlying value array, i.

    Returns true if column with given name is defined and has an entry in the underlying value array, i.e. was requested in the result set. For columns having null value, returns true.

    Definition Classes
    AbstractGettableData
  11. def copy(): ScalaGettableData

  12. def dataAsString: String

    Displays the content in human readable form, including the names and values of the columns

    Displays the content in human readable form, including the names and values of the columns

    Definition Classes
    AbstractGettableData
  13. def ensuring(cond: (ScalaGettableData) ⇒ Boolean, msg: ⇒ Any): ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to Ensuring[ScalaGettableData] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (ScalaGettableData) ⇒ Boolean): ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to Ensuring[ScalaGettableData] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to Ensuring[ScalaGettableData] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to Ensuring[ScalaGettableData] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(o: Any): Boolean

    Definition Classes
    AbstractGettableData → AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def get[T](name: String)(implicit c: TypeConverter[T]): T

    Generic getter for getting columns of any type.

    Generic getter for getting columns of any type. Looks the column up by column name. Column names are case-sensitive.

  22. def get[T](index: Int)(implicit c: TypeConverter[T]): T

    Generic getter for getting columns of any type.

    Generic getter for getting columns of any type. Looks the column up by its index. First column starts at index 0.

  23. def getBoolean(name: String): Boolean

  24. def getBoolean(index: Int): Boolean

    Returns a bool column value.

    Returns a bool column value. Besides working with bool Cassandra type, it can also read numbers and strings. Non-zero numbers are converted to true, zero is converted to false. Strings are converted using String#toBoolean method.

  25. def getBooleanOption(name: String): Option[Boolean]

  26. def getBooleanOption(index: Int): Option[Boolean]

  27. def getByte(name: String): Byte

  28. def getByte(index: Int): Byte

  29. def getByteOption(name: String): Option[Byte]

  30. def getByteOption(index: Int): Option[Byte]

  31. def getBytes(name: String): ByteBuffer

  32. def getBytes(index: Int): ByteBuffer

    Returns a blob column value as ByteBuffer.

    Returns a blob column value as ByteBuffer. This method is not suitable for reading other types of columns. Columns of type blob can be also read as Array[Byte] with the generic get method.

  33. def getBytesOption(name: String): Option[ByteBuffer]

  34. def getBytesOption(index: Int): Option[ByteBuffer]

  35. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  36. def getDate(name: String): Date

  37. def getDate(index: Int): Date

    Returns a timestamp or timeuuid column value as java.util.Date.

    Returns a timestamp or timeuuid column value as java.util.Date. To convert a timestamp to one of other supported date types, use the generic get method, for example:

    row.get[java.sql.Date](0)
  38. def getDateOption(name: String): Option[Date]

  39. def getDateOption(index: Int): Option[Date]

  40. def getDateTime(name: String): DateTime

  41. def getDateTime(index: Int): DateTime

    Returns a timestamp or timeuuid column value as org.joda.time.DateTime.

  42. def getDateTimeOption(name: String): Option[DateTime]

  43. def getDateTimeOption(index: Int): Option[DateTime]

  44. def getDecimal(name: String): BigDecimal

  45. def getDecimal(index: Int): BigDecimal

    Returns a decimal column value.

    Returns a decimal column value. Can be used with all other floating point types as well as with strings containing a valid floating point number of arbitrary precision.

  46. def getDecimalOption(name: String): Option[BigDecimal]

  47. def getDecimalOption(index: Int): Option[BigDecimal]

  48. def getDouble(name: String): Double

  49. def getDouble(index: Int): Double

    Returns a column value as Double.

    Returns a column value as Double. Recommended to use with float and double CQL types. This method can be also used to read a decimal column, with some loss of precision.

  50. def getDoubleOption(name: String): Option[Double]

  51. def getDoubleOption(index: Int): Option[Double]

  52. def getFloat(name: String): Float

  53. def getFloat(index: Int): Float

    Returns a column value as Float.

    Returns a column value as Float. Recommended to use with float CQL type. This method can be also used to read a double or decimal column, with some loss of precision.

  54. def getFloatOption(name: String): Option[Float]

  55. def getFloatOption(index: Int): Option[Float]

  56. def getInet(name: String): InetAddress

  57. def getInet(index: Int): InetAddress

    Returns an inet column value.

    Returns an inet column value. Can be used to read a string containing a valid Internet address, given either as a host name or IP address.

  58. def getInetOption(name: String): Option[InetAddress]

  59. def getInetOption(index: Int): Option[InetAddress]

  60. def getInt(name: String): Int

  61. def getInt(index: Int): Int

    Returns a column value as a 32-bit integer number.

    Returns a column value as a 32-bit integer number. Besides working with int Cassandra type, it can also read other integer numbers as bigint or varint and strings. The string must represent a valid integer number. The number must be within 32-bit integer range or the TypeConversionException will be thrown.

  62. def getIntOption(name: String): Option[Int]

  63. def getIntOption(index: Int): Option[Int]

  64. def getList[T](name: String)(implicit arg0: TypeConverter[T]): Vector[T]

  65. def getList[T](index: Int)(implicit arg0: TypeConverter[T]): Vector[T]

    Reads a list column value and returns it as Scala Vector.

    Reads a list column value and returns it as Scala Vector. A null list is converted to an empty collection. Items of the list are converted to the given type. This method can be also used to read set and map column types. For map, the list items are converted to key-value pairs.

    T

    type of the list item, must be given explicitly.

  66. def getLong(name: String): Long

  67. def getLong(index: Int): Long

    Returns a column value as a 64-bit integer number.

    Returns a column value as a 64-bit integer number. Recommended to use with bigint and counter CQL types It can also read other column types as int, varint, timestamp and string. The string must represent a valid integer number. The number must be within 64-bit integer range or com.datastax.spark.connector.types.TypeConversionException will be thrown. When used with timestamps, returns a number of milliseconds since epoch.

  68. def getLongOption(name: String): Option[Long]

  69. def getLongOption(index: Int): Option[Long]

  70. def getMap[K, V](name: String)(implicit arg0: TypeConverter[K], arg1: TypeConverter[V]): Map[K, V]

  71. def getMap[K, V](index: Int)(implicit arg0: TypeConverter[K], arg1: TypeConverter[V]): Map[K, V]

    Reads a map column value.

    Reads a map column value. A null map is converted to an empty collection. Keys and values of the map are converted to the given types.

    K

    type of keys, must be given explicitly.

    V

    type of values, must be given explicitly.

  72. def getRaw(name: String): AnyRef

  73. def getRaw(index: Int): AnyRef

    Returns a column value by index without applying any conversion.

    Returns a column value by index without applying any conversion. The underlying type is the same as the type returned by the low-level Cassandra driver, is implementation defined and may change in the future. Cassandra nulls are returned as Scala nulls.

  74. def getSet[T](name: String)(implicit arg0: TypeConverter[T]): Set[T]

  75. def getSet[T](index: Int)(implicit arg0: TypeConverter[T]): Set[T]

    Reads a set column value.

    Reads a set column value. A null set is converted to an empty collection. Items of the set are converted to the given type. This method can be also used to read list and map column types. For map, the set items are converted to key-value pairs.

    T

    type of the set item, must be given explicitly.

  76. def getShort(name: String): Short

  77. def getShort(index: Int): Short

  78. def getShortOption(name: String): Option[Short]

  79. def getShortOption(index: Int): Option[Short]

  80. def getString(name: String): String

  81. def getString(index: Int): String

    Returns the column value converted to a String acceptable by CQL.

    Returns the column value converted to a String acceptable by CQL. All data types that have human readable text representations can be converted. Note, this is not the same as calling getAny(index).toString which works differently e.g. for dates.

  82. def getStringOption(name: String): Option[String]

  83. def getStringOption(index: Int): Option[String]

  84. def getUDTValue(name: String): UDTValue

  85. def getUDTValue(index: Int): UDTValue

    Returns a column value of User Defined Type

  86. def getUDTValueOption(name: String): Option[UDTValue]

  87. def getUDTValueOption(index: Int): Option[UDTValue]

  88. def getUUID(name: String): UUID

  89. def getUUID(index: Int): UUID

    Returns an uuid column value.

    Returns an uuid column value. Can be used to read a string containing a valid UUID.

  90. def getUUIDOption(name: String): Option[UUID]

  91. def getUUIDOption(index: Int): Option[UUID]

  92. def getVarInt(name: String): BigInt

  93. def getVarInt(index: Int): BigInt

    Returns a varint column value.

    Returns a varint column value. Can be used with all other integer types as well as with strings containing a valid integer number of arbitrary size.

  94. def getVarIntOption(name: String): Option[BigInt]

  95. def getVarIntOption(index: Int): Option[BigInt]

  96. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  97. def indexOf(name: String): Int

    Returns index of column with given name or -1 if column not found

    Returns index of column with given name or -1 if column not found

    Definition Classes
    AbstractGettableData
  98. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  99. def isNullAt(name: String): Boolean

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    AbstractGettableData
  100. def isNullAt(index: Int): Boolean

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    AbstractGettableData
  101. def iterator: Iterator[AnyRef]

  102. def length: Int

    Total number of columns in this row.

    Total number of columns in this row. Includes columns with null values.

    Definition Classes
    AbstractGettableData
  103. def nameOf(index: Int): String

    Returns the name of the i-th column.

    Returns the name of the i-th column.

    Definition Classes
    AbstractGettableData
  104. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  105. final def notify(): Unit

    Definition Classes
    AnyRef
  106. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  107. def size: Int

    Total number of columns in this row.

    Total number of columns in this row. Includes columns with null values.

    Definition Classes
    AbstractGettableData
  108. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  109. def toMap: Map[String, Any]

    Converts this row to a Map

  110. def toString(): String

    Definition Classes
    AbstractGettableData → AnyRef → Any
  111. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  114. def [B](y: B): (ScalaGettableData, B)

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to ArrowAssoc[ScalaGettableData] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (scalaGettableData: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (scalaGettableData: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to ArrowAssoc[ScalaGettableData] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (scalaGettableData: ArrowAssoc[ScalaGettableData]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: ScalaGettableData

    Implicit information
    This member is added by an implicit conversion from ScalaGettableData to Ensuring[ScalaGettableData] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (scalaGettableData: Ensuring[ScalaGettableData]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AbstractGettableData

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ScalaGettableData to StringAdd

Inherited by implicit conversion any2stringfmt from ScalaGettableData to StringFormat

Inherited by implicit conversion any2ArrowAssoc from ScalaGettableData to ArrowAssoc[ScalaGettableData]

Inherited by implicit conversion any2Ensuring from ScalaGettableData to Ensuring[ScalaGettableData]

Ungrouped