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.
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.
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.
Returns a column value without applying any conversion.
Returns a column value without applying any conversion. The underlying type is the same as the type returned by the low-level Cassandra driver.
Returns a column value without applying any conversion, besides converting a null to a None.
Returns a column value without applying any conversion, besides converting a null to a None. The underlying type is the same as the type returned by the low-level Cassandra driver.
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.
Returns a column value without applying any conversion, besides converting a null to a None.
Returns a column value without applying any conversion, besides converting a null to a None. The underlying type is the same as the type returned by the low-level Cassandra driver.
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.
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.
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:
row.get[java.sql.Date](0) row.get[org.joda.time.DateTime](0)
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.
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.
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.
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.
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.
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.
type of the list item, must be given explicitly.
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.
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.
type of keys, must be given explicitly.
type of values, must be given explicitly.
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.
type of the set item, must be given explicitly.
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.
Returns an uuid column value.
Returns an uuid column value.
Can be used to read a string containing a valid UUID.
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.
Returns index of column with given name or -1 if column not found
Returns true if column value is Cassandra null
Returns true if column value is Cassandra null
Returns the name of the i-th column.
Total number of columns in this row.
Total number of columns in this row. Includes columns with null values.
Converts this row to a Map
Displays the row in human readable form, including the names and values of the columns
Displays the row in human readable form, including the names and values of the columns
(cassandraRow: StringAdd).self
(cassandraRow: StringFormat).self
(cassandraRow: ArrowAssoc[CassandraRow]).x
(Since version 2.10.0) Use leftOfArrow instead
(cassandraRow: Ensuring[CassandraRow]).x
(Since version 2.10.0) Use resultOfEnsuring instead
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 thegetXXXOptiongetters which convertnulls toNonevalues, otherwise aNullPointerExceptionwould 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,getStringOptionbigint:getLong,getLongOptionblob:getBytes,getBytesOptionboolean:getBool,getBoolOptioncounter:getLong,getLongOptiondecimal:getDecimal,getDecimalOptiondouble:getDouble,getDoubleOptionfloat:getFloat,getFloatOptioninet:getInet,getInetOptionint:getInt,getIntOptiontext:getString,getStringOptiontimestamp:getDate,getDateOptiontimeuuid:getUUID,getUUIDOptionuuid:getUUID,getUUIDOptionvarchar:getString,getStringOptionvarint:getVarInt,getVarIntOptionlist:getList[T]set:getSet[T]map:getMap[K, V]Collection getters
getList,getSetandgetMaprequire to explicitly pass an appropriate item type:Generic
getallows to automatically convert collections to other collection types. Supported containers:scala.collection.immutable.Listscala.collection.immutable.Setscala.collection.immutable.TreeSetscala.collection.immutable.Vectorscala.collection.immutable.Mapscala.collection.immutable.TreeMapscala.collection.Iterablescala.collection.IndexedSeqjava.util.ArrayListjava.util.HashSetjava.util.HashMapExample:
Timestamps can be converted to other Date types by using generic
get. Supported date types: