org.apache.spark.sql.cassandra

CassandraSQLRow

final class CassandraSQLRow extends GettableData with Row with Serializable

Linear Supertypes
Row, GettableData, GettableByIndexData, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CassandraSQLRow
  2. Row
  3. GettableData
  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

Instance Constructors

  1. new CassandraSQLRow(columnNames: IndexedSeq[String], columnValues: IndexedSeq[AnyRef])

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

    Implicit information
    This member is added by an implicit conversion from CassandraSQLRow to ArrowAssoc[CassandraSQLRow] 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 anyNull: Boolean

    Definition Classes
    Row
  9. def apply(i: Int): AnyRef

    Definition Classes
    CassandraSQLRow → Row
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val columnNames: IndexedSeq[String]

    Definition Classes
    CassandraSQLRowGettableData
  13. val columnValues: IndexedSeq[AnyRef]

    Definition Classes
    CassandraSQLRowGettableByIndexData
  14. def contains(name: String): Boolean

    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.

    Definition Classes
    GettableData
  15. def copy(): CassandraSQLRow

    Definition Classes
    CassandraSQLRow → Row
  16. 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
    GettableDataGettableByIndexData
  17. def ensuring(cond: (CassandraSQLRow) ⇒ Boolean, msg: ⇒ Any): CassandraSQLRow

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

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

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

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

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

    Definition Classes
    Row → AnyRef → Any
  23. def fieldIndex(name: String): Int

    Definition Classes
    Row
  24. def fieldNames: IndexedSeq[String]

    Attributes
    protected
  25. def finalize(): Unit

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

    Implicit information
    This member is added by an implicit conversion from CassandraSQLRow to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. def get(i: Int): Any

    Definition Classes
    CassandraSQLRow → Row
  28. def getAs[T](fieldName: String): T

    Definition Classes
    Row
  29. def getAs[T](i: Int): T

    Definition Classes
    Row
  30. def getBoolean(i: Int): Boolean

    Definition Classes
    CassandraSQLRow → Row
  31. def getByte(i: Int): Byte

    Definition Classes
    CassandraSQLRow → Row
  32. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  33. def getDate(i: Int): Date

    Definition Classes
    Row
  34. def getDecimal(i: Int): BigDecimal

    Definition Classes
    Row
  35. def getDouble(i: Int): Double

    Definition Classes
    CassandraSQLRow → Row
  36. def getFloat(i: Int): Float

    Definition Classes
    CassandraSQLRow → Row
  37. def getInt(i: Int): Int

    Definition Classes
    CassandraSQLRow → Row
  38. def getJavaMap[K, V](i: Int): Map[K, V]

    Definition Classes
    Row
  39. def getList[T](i: Int): List[T]

    Definition Classes
    Row
  40. def getLong(i: Int): Long

    Definition Classes
    CassandraSQLRow → Row
  41. def getMap[K, V](i: Int): Map[K, V]

    Definition Classes
    Row
  42. def getRaw(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, is implementation defined and may change in the future. Cassandra nulls are returned as Scala nulls.

    Definition Classes
    GettableData
  43. 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
  44. def getSeq[T](i: Int): Seq[T]

    Definition Classes
    Row
  45. def getShort(i: Int): Short

    Definition Classes
    CassandraSQLRow → Row
  46. def getString(i: Int): String

    Definition Classes
    CassandraSQLRow → Row
  47. def getStruct(i: Int): Row

    Definition Classes
    Row
  48. def getTimestamp(i: Int): Timestamp

    Definition Classes
    Row
  49. def getValuesMap[T](fieldNames: Seq[String]): Map[String, T]

    Definition Classes
    Row
  50. def hashCode(): Int

    Definition Classes
    Row → AnyRef → Any
  51. def indexOf(name: String): Int

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

    Definition Classes
    Any
  53. def isNullAt(i: Int): Boolean

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    CassandraSQLRow → Row → GettableByIndexData
  54. def isNullAt(name: String): Boolean

    Returns true if column value is Cassandra null

    Returns true if column value is Cassandra null

    Definition Classes
    GettableData
  55. 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
  56. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    Row
  57. def mkString(sep: String): String

    Definition Classes
    Row
  58. def mkString: String

    Definition Classes
    Row
  59. def nameOf(index: Int): String

    Returns the name of the i-th column.

    Returns the name of the i-th column.

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

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

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

    Definition Classes
    AnyRef
  63. def schema: StructType

    Definition Classes
    Row
  64. def size: Int

    Total number of columns in this row.

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

    Definition Classes
    CassandraSQLRow → Row → GettableByIndexData
  65. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  66. def toSeq: Seq[Any]

    Definition Classes
    CassandraSQLRow → Row
  67. def toString(): String

    Definition Classes
    Row → AnyRef → Any
  68. final def wait(): Unit

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

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

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

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

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

Deprecated Value Members

  1. def x: CassandraSQLRow

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

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: CassandraSQLRow

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

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Row

Inherited from GettableData

Inherited from GettableByIndexData

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from CassandraSQLRow to StringAdd

Inherited by implicit conversion any2stringfmt from CassandraSQLRow to StringFormat

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

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

Ungrouped