com.datastax.spark.connector.japi

JavaGettableData

trait JavaGettableData extends JavaGettableByIndexData with GettableData

Linear Supertypes
GettableData, JavaGettableByIndexData, GettableByIndexData, Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JavaGettableData
  2. GettableData
  3. JavaGettableByIndexData
  4. GettableByIndexData
  5. Serializable
  6. Serializable
  7. AnyRef
  8. 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 columnNames: IndexedSeq[String]

    Definition Classes
    GettableData
  2. abstract def columnValues: IndexedSeq[AnyRef]

    Definition Classes
    GettableByIndexData

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 JavaGettableData to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (JavaGettableData, B)

    Implicit information
    This member is added by an implicit conversion from JavaGettableData to ArrowAssoc[JavaGettableData] 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. def apply(name: String): AnyRef

    Equivalent to getAny

  9. def apply(index: Int): AnyRef

    Equivalent to getAny

    Equivalent to getAny

    Definition Classes
    JavaGettableByIndexData
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

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

    Definition Classes
    GettableData
  13. def dataAsString: String

    Definition Classes
    GettableData → GettableByIndexData
  14. def ensuring(cond: (JavaGettableData) ⇒ Boolean, msg: ⇒ Any): JavaGettableData

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

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

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

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

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

    Definition Classes
    GettableData → GettableByIndexData → AnyRef → Any
  20. def finalize(): Unit

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

    Implicit information
    This member is added by an implicit conversion from JavaGettableData to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. def get[T <: AnyRef](name: String, tc: 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.

  23. def get[T <: AnyRef](index: Int, tc: 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.

    Definition Classes
    JavaGettableByIndexData
  24. def getBoolean(name: String): 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 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.

    Definition Classes
    JavaGettableByIndexData
  26. def getByte(name: String): Byte

  27. def getByte(index: Int): Byte

    Definition Classes
    JavaGettableByIndexData
  28. def getBytes(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  30. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  31. def getDate(name: String): 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)
  32. 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)
    Definition Classes
    JavaGettableByIndexData
  33. def getDateTime(name: String): DateTime

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

  34. def getDateTime(index: Int): DateTime

    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
    JavaGettableByIndexData
  35. def getDecimal(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  37. def getDouble(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  39. def getFloat(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  41. def getInet(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  43. def getInt(name: String): Integer

    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.

  44. def getInt(index: Int): Integer

    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
    JavaGettableByIndexData
  45. def getList[T](name: String)(implicit converter: TypeConverter[T]): List[T]

  46. def getList(name: String): List[AnyRef]

    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.

  47. def getList[T](index: Int)(implicit converter: TypeConverter[T]): List[T]

    Definition Classes
    JavaGettableByIndexData
  48. def getList(index: Int): List[AnyRef]

    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.

    Definition Classes
    JavaGettableByIndexData
  49. def getLong(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  51. def getMap[K, V](name: String)(implicit keyConverter: TypeConverter[K], valueConverter: 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.

  52. def getMap(name: String): Map[AnyRef, AnyRef]

    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.

  53. def getMap[K, V](index: Int)(implicit keyConverter: TypeConverter[K], valueConverter: 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.

    Definition Classes
    JavaGettableByIndexData
  54. def getMap(index: Int): Map[AnyRef, AnyRef]

    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.

    Definition Classes
    JavaGettableByIndexData
  55. def getObject(name: String): 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.

  56. def getObject(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.

    Definition Classes
    JavaGettableByIndexData
  57. def getRaw(name: String): AnyRef

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

    Definition Classes
    GettableByIndexData
  59. def getSet[T](name: String)(implicit converter: TypeConverter[T]): Set[T]

  60. def getSet(name: String): Set[AnyRef]

    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.

  61. def getSet[T](index: Int)(implicit converter: TypeConverter[T]): Set[T]

    Definition Classes
    JavaGettableByIndexData
  62. def getSet(index: Int): Set[AnyRef]

    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.

    Definition Classes
    JavaGettableByIndexData
  63. def getShort(name: String): Short

  64. def getShort(index: Int): Short

    Definition Classes
    JavaGettableByIndexData
  65. def getString(name: String): 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.

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

    Definition Classes
    JavaGettableByIndexData
  67. def getTupleValue(name: String): TupleValue

    Returns a column value of tuple type

  68. def getTupleValue(index: Int): TupleValue

    Returns a column value of tuple type

    Returns a column value of tuple type

    Definition Classes
    JavaGettableByIndexData
  69. def getUDTValue(name: String): UDTValue

    Returns a column value of User Defined Type

  70. def getUDTValue(index: Int): UDTValue

    Returns a column value of User Defined Type

    Returns a column value of User Defined Type

    Definition Classes
    JavaGettableByIndexData
  71. def getUUID(name: String): UUID

    Returns an uuid column value.

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

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

    Definition Classes
    JavaGettableByIndexData
  73. def getVarInt(name: String): BigInteger

    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.

  74. def getVarInt(index: Int): BigInteger

    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
    JavaGettableByIndexData
  75. def hashCode(): Int

    Definition Classes
    GettableData → GettableByIndexData → AnyRef → Any
  76. def indexOf(name: String): Int

    Definition Classes
    GettableData
  77. final def isInstanceOf[T0]: Boolean

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

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

    Definition Classes
    GettableByIndexData
  80. def length: Int

    Definition Classes
    GettableByIndexData
  81. def nameOf(index: Int): String

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

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

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

    Definition Classes
    AnyRef
  85. def size: Int

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

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

    Converts this row to a Map

  88. def toString(): String

    Definition Classes
    GettableData → GettableByIndexData → AnyRef → Any
  89. final def wait(): Unit

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

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

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

    Implicit information
    This member is added by an implicit conversion from JavaGettableData to ArrowAssoc[JavaGettableData] 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 JavaGettableData 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:
    (javaGettableData: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JavaGettableData 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:
    (javaGettableData: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: JavaGettableData

    Implicit information
    This member is added by an implicit conversion from JavaGettableData to ArrowAssoc[JavaGettableData] 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:
    (javaGettableData: ArrowAssoc[JavaGettableData]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: JavaGettableData

    Implicit information
    This member is added by an implicit conversion from JavaGettableData to Ensuring[JavaGettableData] 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:
    (javaGettableData: Ensuring[JavaGettableData]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from GettableData

Inherited from JavaGettableByIndexData

Inherited from GettableByIndexData

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JavaGettableData to StringAdd

Inherited by implicit conversion any2stringfmt from JavaGettableData to StringFormat

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

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

Ungrouped