Trait

com.datastax.spark.connector

ScalaGettableByIndexData

Related Doc: package connector

Permalink

trait ScalaGettableByIndexData extends GettableByIndexData

Linear Supertypes
GettableByIndexData, Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalaGettableByIndexData
  2. GettableByIndexData
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def columnValues: IndexedSeq[AnyRef]

    Permalink
    Definition Classes
    GettableByIndexData

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def copy: ScalaGettableByIndexData

    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
    GettableByIndexData
  10. def ensuring(cond: (ScalaGettableByIndexData) ⇒ Boolean, msg: ⇒ Any): ScalaGettableByIndexData

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

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

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

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

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

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

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaGettableByIndexData to StringFormat[ScalaGettableByIndexData] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. 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.

  19. 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.

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

    Permalink
  21. def getByte(index: Int): Byte

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

    Permalink
  23. 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.

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

    Permalink
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  26. 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)
  27. def getDateOption(index: Int): Option[Date]

    Permalink
  28. def getDateTime(index: Int): DateTime

    Permalink

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

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

    Permalink
  30. 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.

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

    Permalink
  32. 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.

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

    Permalink
  34. 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.

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

    Permalink
  36. 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.

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

    Permalink
  38. 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.

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

    Permalink
  40. 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.

  41. 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.

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

    Permalink
  43. 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.

  44. 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
  45. 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.

  46. def getShort(index: Int): Short

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

    Permalink
  48. 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.

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

    Permalink
  50. def getTupleValue(index: Int): TupleValue

    Permalink

    Returns a column value of cassandra tuple type

  51. def getTupleValueOption(index: Int): Option[TupleValue]

    Permalink
  52. def getUDTValue(index: Int): UDTValue

    Permalink

    Returns a column value of User Defined Type

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

    Permalink
  54. 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.

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

    Permalink
  56. 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.

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

    Permalink
  58. def hashCode(): Int

    Permalink
    Definition Classes
    GettableByIndexData → AnyRef → Any
  59. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  60. 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
  61. def iterator: Iterator[AnyRef]

    Permalink
  62. 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
  63. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  66. 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
  67. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  68. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. def [B](y: B): (ScalaGettableByIndexData, B)

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

Inherited from GettableByIndexData

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ScalaGettableByIndexData to any2stringadd[ScalaGettableByIndexData]

Inherited by implicit conversion StringFormat from ScalaGettableByIndexData to StringFormat[ScalaGettableByIndexData]

Inherited by implicit conversion Ensuring from ScalaGettableByIndexData to Ensuring[ScalaGettableByIndexData]

Inherited by implicit conversion ArrowAssoc from ScalaGettableByIndexData to ArrowAssoc[ScalaGettableByIndexData]

Ungrouped