trait ScalaGettableByIndexData extends GettableByIndexData
- Alphabetic
- By Inheritance
- ScalaGettableByIndexData
- GettableByIndexData
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def columnValues: IndexedSeq[AnyRef]
- Definition Classes
- GettableByIndexData
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def copy: ScalaGettableByIndexData
- 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
- GettableByIndexData
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(o: Any): Boolean
- Definition Classes
- GettableByIndexData → AnyRef → Any
- 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.
- def getBoolean(index: Int): Boolean
Returns a
boolcolumn value.Returns a
boolcolumn value. Besides working withboolCassandra type, it can also read numbers and strings. Non-zero numbers are converted totrue, zero is converted tofalse. Strings are converted usingString#toBooleanmethod. - def getBooleanOption(index: Int): Option[Boolean]
- def getByte(index: Int): Byte
- def getByteOption(index: Int): Option[Byte]
- def getBytes(index: Int): ByteBuffer
Returns a
blobcolumn value as ByteBuffer.Returns a
blobcolumn value as ByteBuffer. This method is not suitable for reading other types of columns. Columns of typeblobcan be also read as Array[Byte] with the genericgetmethod. - def getBytesOption(index: Int): Option[ByteBuffer]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def getDate(index: Int): Date
Returns a
timestamportimeuuidcolumn value asjava.util.Date.Returns a
timestamportimeuuidcolumn value asjava.util.Date. To convert a timestamp to one of other supported date types, use the genericgetmethod, for example:row.get[java.sql.Date](0) - def getDateOption(index: Int): Option[Date]
- def getDecimal(index: Int): BigDecimal
Returns a
decimalcolumn value.Returns a
decimalcolumn value. Can be used with all other floating point types as well as with strings containing a valid floating point number of arbitrary precision. - def getDecimalOption(index: Int): Option[BigDecimal]
- def getDouble(index: Int): Double
Returns a column value as Double.
Returns a column value as Double. Recommended to use with
floatanddoubleCQL types. This method can be also used to read adecimalcolumn, with some loss of precision. - def getDoubleOption(index: Int): Option[Double]
- def getFloat(index: Int): Float
Returns a column value as Float.
Returns a column value as Float. Recommended to use with
floatCQL type. This method can be also used to read adoubleordecimalcolumn, with some loss of precision. - def getFloatOption(index: Int): Option[Float]
- def getInet(index: Int): InetAddress
Returns an
inetcolumn value.Returns an
inetcolumn value. Can be used to read a string containing a valid Internet address, given either as a host name or IP address. - def getInetOption(index: Int): Option[InetAddress]
- 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
intCassandra type, it can also read other integer numbers asbigintorvarintand strings. The string must represent a valid integer number. The number must be within 32-bit integer range or theTypeConversionExceptionwill be thrown. - def getIntOption(index: Int): Option[Int]
- def getList[T](index: Int)(implicit arg0: TypeConverter[T]): Vector[T]
Reads a
listcolumn value and returns it as ScalaVector.Reads a
listcolumn value and returns it as ScalaVector. 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 readsetandmapcolumn types. Formap, the list items are converted to key-value pairs.- T
type of the list item, must be given explicitly.
- 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
bigintandcounterCQL types It can also read other column types asint,varint,timestampandstring. 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. - def getLongOption(index: Int): Option[Long]
- def getMap[K, V](index: Int)(implicit arg0: TypeConverter[K], arg1: TypeConverter[V]): Map[K, V]
Reads a
mapcolumn value.Reads a
mapcolumn 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.
- 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.
- Definition Classes
- GettableByIndexData
- def getSet[T](index: Int)(implicit arg0: TypeConverter[T]): Set[T]
Reads a
setcolumn value.Reads a
setcolumn 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 readlistandmapcolumn types. Formap, the set items are converted to key-value pairs.- T
type of the set item, must be given explicitly.
- def getShort(index: Int): Short
- def getShortOption(index: Int): Option[Short]
- def getString(index: Int): String
Returns the column value converted to a
Stringacceptable by CQL.Returns the column value converted to a
Stringacceptable by CQL. All data types that have human readable text representations can be converted. Note, this is not the same as callinggetAny(index).toStringwhich works differently e.g. for dates. - def getStringOption(index: Int): Option[String]
- def getTupleValue(index: Int): TupleValue
Returns a column value of cassandra tuple type
- def getTupleValueOption(index: Int): Option[TupleValue]
- def getUDTValue(index: Int): UDTValue
Returns a column value of User Defined Type
- def getUDTValueOption(index: Int): Option[UDTValue]
- def getUUID(index: Int): UUID
Returns an
uuidcolumn value.Returns an
uuidcolumn value. Can be used to read a string containing a valid UUID. - def getUUIDOption(index: Int): Option[UUID]
- def getVarInt(index: Int): BigInt
Returns a
varintcolumn value.Returns a
varintcolumn value. Can be used with all other integer types as well as with strings containing a valid integer number of arbitrary size. - def getVarIntOption(index: Int): Option[BigInt]
- def hashCode(): Int
- Definition Classes
- GettableByIndexData → AnyRef → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNullAt(index: Int): Boolean
Returns true if column value is Cassandra null
Returns true if column value is Cassandra null
- Definition Classes
- GettableByIndexData
- def iterator: Iterator[AnyRef]
- def length: Int
Total number of columns in this row.
Total number of columns in this row. Includes columns with null values.
- Definition Classes
- GettableByIndexData
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def size: Int
Total number of columns in this row.
Total number of columns in this row. Includes columns with null values.
- Definition Classes
- GettableByIndexData
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- GettableByIndexData → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)