Class/Object

com.datastax.spark.connector

CassandraRow

Related Docs: object CassandraRow | package connector

Permalink

final class CassandraRow extends ScalaGettableData with Serializable

Represents a single row fetched from Cassandra. Offers getters to read individual fields by column name or column index. The getters try to convert value to desired type, whenever possible. Most of the column types can be converted to a String. For nullable columns, you should use the getXXXOption getters which convert nulls to None values, otherwise a NullPointerException would be thrown.

All getters throw an exception if column name/index is not found. Column indexes start at 0.

If the value cannot be converted to desired type, com.datastax.spark.connector.types.TypeConversionException is thrown.

Recommended getters for Cassandra types:

- ascii: getString, getStringOption - bigint: getLong, getLongOption - blob: getBytes, getBytesOption - boolean: getBool, getBoolOption - counter: getLong, getLongOption - decimal: getDecimal, getDecimalOption - double: getDouble, getDoubleOption - float: getFloat, getFloatOption - inet: getInet, getInetOption - int: getInt, getIntOption - text: getString, getStringOption - timestamp: getDate, getDateOption - timeuuid: getUUID, getUUIDOption - uuid: getUUID, getUUIDOption - varchar: getString, getStringOption - varint: getVarInt, getVarIntOption - list: getList[T] - set: getSet[T] - map: getMap[K, V]

Collection getters getList, getSet and getMap require to explicitly pass an appropriate item type:

row.getList[String]("a_list")
row.getList[Int]("a_list")
row.getMap[Int, String]("a_map")

Generic get allows to automatically convert collections to other collection types. Supported containers: - scala.collection.immutable.List - scala.collection.immutable.Set - scala.collection.immutable.TreeSet - scala.collection.immutable.Vector - scala.collection.immutable.Map - scala.collection.immutable.TreeMap - scala.collection.Iterable - scala.collection.IndexedSeq - java.util.ArrayList - java.util.HashSet - java.util.HashMap

Example:

row.get[List[Int]]("a_list")
row.get[Vector[Int]]("a_list")
row.get[java.util.ArrayList[Int]]("a_list")
row.get[TreeMap[Int, String]]("a_map")

Timestamps can be converted to other Date types by using generic get. Supported date types: - java.util.Date - java.sql.Date - org.joda.time.DateTime

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CassandraRow
  2. ScalaGettableData
  3. GettableData
  4. ScalaGettableByIndexData
  5. GettableByIndexData
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CassandraRow(metaData: CassandraRowMetadata, columnValues: IndexedSeq[AnyRef])

    Permalink
  2. new CassandraRow(columnNames: IndexedSeq[String], columnValues: IndexedSeq[AnyRef])

    Permalink

    The constructor is for testing and backward compatibility only.

    The constructor is for testing and backward compatibility only. Use default constructor with shared metadata for memory saving and performance.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use default constructor

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 asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val columnValues: IndexedSeq[AnyRef]

    Permalink
    Definition Classes
    CassandraRowGettableByIndexData
  7. def contains(name: String): Boolean

    Permalink

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

    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
    GettableData
  8. def copy: ScalaGettableData

    Permalink
  9. def dataAsString: String

    Permalink

    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
    GettableDataGettableByIndexData
  10. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def get[T](name: String)(implicit c: TypeConverter[T]): T

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  14. def get[T](index: Int)(implicit c: TypeConverter[T]): T

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  15. def getBoolean(name: String): Boolean

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  16. def getBoolean(index: Int): Boolean

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  17. def getBooleanOption(name: String): Option[Boolean]

    Permalink
    Definition Classes
    ScalaGettableData
  18. def getBooleanOption(index: Int): Option[Boolean]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  19. def getByte(name: String): Byte

    Permalink
    Definition Classes
    ScalaGettableData
  20. def getByte(index: Int): Byte

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  21. def getByteOption(name: String): Option[Byte]

    Permalink
    Definition Classes
    ScalaGettableData
  22. def getByteOption(index: Int): Option[Byte]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  23. def getBytes(name: String): ByteBuffer

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  24. def getBytes(index: Int): ByteBuffer

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  25. def getBytesOption(name: String): Option[ByteBuffer]

    Permalink
    Definition Classes
    ScalaGettableData
  26. def getBytesOption(index: Int): Option[ByteBuffer]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  27. final def getClass(): Class[_]

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

    Permalink

    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)
    Definition Classes
    ScalaGettableData
  29. def getDate(index: Int): Date

    Permalink

    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)
    Definition Classes
    ScalaGettableByIndexData
  30. def getDateOption(name: String): Option[Date]

    Permalink
    Definition Classes
    ScalaGettableData
  31. def getDateOption(index: Int): Option[Date]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  32. def getDateTime(name: String): DateTime

    Permalink

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

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

    Definition Classes
    ScalaGettableData
  33. def getDateTime(index: Int): DateTime

    Permalink

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

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

    Definition Classes
    ScalaGettableByIndexData
  34. def getDateTimeOption(name: String): Option[DateTime]

    Permalink
    Definition Classes
    ScalaGettableData
  35. def getDateTimeOption(index: Int): Option[DateTime]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  36. def getDecimal(name: String): BigDecimal

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  37. def getDecimal(index: Int): BigDecimal

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  38. def getDecimalOption(name: String): Option[BigDecimal]

    Permalink
    Definition Classes
    ScalaGettableData
  39. def getDecimalOption(index: Int): Option[BigDecimal]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  40. def getDouble(name: String): Double

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  41. def getDouble(index: Int): Double

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  42. def getDoubleOption(name: String): Option[Double]

    Permalink
    Definition Classes
    ScalaGettableData
  43. def getDoubleOption(index: Int): Option[Double]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  44. def getFloat(name: String): Float

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  45. def getFloat(index: Int): Float

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  46. def getFloatOption(name: String): Option[Float]

    Permalink
    Definition Classes
    ScalaGettableData
  47. def getFloatOption(index: Int): Option[Float]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  48. def getInet(name: String): InetAddress

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  49. def getInet(index: Int): InetAddress

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  50. def getInetOption(name: String): Option[InetAddress]

    Permalink
    Definition Classes
    ScalaGettableData
  51. def getInetOption(index: Int): Option[InetAddress]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  52. def getInt(name: String): Int

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  53. def getInt(index: Int): Int

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  54. def getIntOption(name: String): Option[Int]

    Permalink
    Definition Classes
    ScalaGettableData
  55. def getIntOption(index: Int): Option[Int]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  56. def getList[T](name: String)(implicit arg0: TypeConverter[T]): Vector[T]

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  57. def getList[T](index: Int)(implicit arg0: TypeConverter[T]): Vector[T]

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  58. def getLong(name: String): Long

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  59. def getLong(index: Int): Long

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  60. def getLongOption(name: String): Option[Long]

    Permalink
    Definition Classes
    ScalaGettableData
  61. def getLongOption(index: Int): Option[Long]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  62. def getMap[K, V](name: String)(implicit arg0: TypeConverter[K], arg1: TypeConverter[V]): Map[K, V]

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  63. def getMap[K, V](index: Int)(implicit arg0: TypeConverter[K], arg1: TypeConverter[V]): Map[K, V]

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  64. def getRaw(name: String): AnyRef

    Permalink

    Returns a column value by aliased name without applying any conversion.

    Returns a column value by aliased name 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.

    Definition Classes
    GettableData
  65. def getRaw(index: Int): AnyRef

    Permalink

    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.

    Definition Classes
    GettableByIndexData
  66. def getRawCql(name: String): AnyRef

    Permalink

    Returns a column value by cql Name

    Returns a column value by cql Name

    Definition Classes
    GettableData
  67. def getSet[T](name: String)(implicit arg0: TypeConverter[T]): Set[T]

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  68. def getSet[T](index: Int)(implicit arg0: TypeConverter[T]): Set[T]

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  69. def getShort(name: String): Short

    Permalink
    Definition Classes
    ScalaGettableData
  70. def getShort(index: Int): Short

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  71. def getShortOption(name: String): Option[Short]

    Permalink
    Definition Classes
    ScalaGettableData
  72. def getShortOption(index: Int): Option[Short]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  73. def getString(name: String): String

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  74. def getString(index: Int): String

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  75. def getStringOption(name: String): Option[String]

    Permalink
    Definition Classes
    ScalaGettableData
  76. def getStringOption(index: Int): Option[String]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  77. def getTupleValue(name: String): TupleValue

    Permalink

    Returns a column value of cassandra tuple type

    Returns a column value of cassandra tuple type

    Definition Classes
    ScalaGettableData
  78. def getTupleValue(index: Int): TupleValue

    Permalink

    Returns a column value of cassandra tuple type

    Returns a column value of cassandra tuple type

    Definition Classes
    ScalaGettableByIndexData
  79. def getTupleValueOption(name: String): Option[TupleValue]

    Permalink
    Definition Classes
    ScalaGettableData
  80. def getTupleValueOption(index: Int): Option[TupleValue]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  81. def getUDTValue(name: String): UDTValue

    Permalink

    Returns a column value of User Defined Type

    Returns a column value of User Defined Type

    Definition Classes
    ScalaGettableData
  82. def getUDTValue(index: Int): UDTValue

    Permalink

    Returns a column value of User Defined Type

    Returns a column value of User Defined Type

    Definition Classes
    ScalaGettableByIndexData
  83. def getUDTValueOption(name: String): Option[UDTValue]

    Permalink
    Definition Classes
    ScalaGettableData
  84. def getUDTValueOption(index: Int): Option[UDTValue]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  85. def getUUID(name: String): UUID

    Permalink

    Returns an uuid column value.

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

    Definition Classes
    ScalaGettableData
  86. def getUUID(index: Int): UUID

    Permalink

    Returns an uuid column value.

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

    Definition Classes
    ScalaGettableByIndexData
  87. def getUUIDOption(name: String): Option[UUID]

    Permalink
    Definition Classes
    ScalaGettableData
  88. def getUUIDOption(index: Int): Option[UUID]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  89. def getVarInt(name: String): BigInt

    Permalink

    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.

    Definition Classes
    ScalaGettableData
  90. def getVarInt(index: Int): BigInt

    Permalink

    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.

    Definition Classes
    ScalaGettableByIndexData
  91. def getVarIntOption(name: String): Option[BigInt]

    Permalink
    Definition Classes
    ScalaGettableData
  92. def getVarIntOption(index: Int): Option[BigInt]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  93. def hashCode(): Int

    Permalink
    Definition Classes
    GettableDataGettableByIndexData → AnyRef → Any
  94. def indexOf(name: String): Int

    Permalink

    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
    GettableData
  95. final def isInstanceOf[T0]: Boolean

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

    Permalink

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    GettableData
  97. def isNullAt(index: Int): Boolean

    Permalink

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    GettableByIndexData
  98. def iterator: Iterator[AnyRef]

    Permalink
    Definition Classes
    ScalaGettableByIndexData
  99. def length: Int

    Permalink

    Total number of columns in this row.

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

    Definition Classes
    GettableByIndexData
  100. val metaData: CassandraRowMetadata

    Permalink
    Definition Classes
    CassandraRowGettableData
  101. def nameOf(index: Int): String

    Permalink

    Returns the name of the i-th column.

    Returns the name of the i-th column.

    Definition Classes
    GettableData
  102. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  105. def size: Int

    Permalink

    Total number of columns in this row.

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

    Definition Classes
    GettableByIndexData
  106. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink

    Converts this row to a Map

    Converts this row to a Map

    Definition Classes
    ScalaGettableData
  108. def toString(): String

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

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

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

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

Inherited from ScalaGettableData

Inherited from GettableData

Inherited from ScalaGettableByIndexData

Inherited from GettableByIndexData

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped