org.apache.spark.sql.api.java

Row

class Row extends Serializable

A result row from a Spark SQL query.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Row
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Row(row: catalyst.expressions.Row)

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. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

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

    Definition Classes
    Any
  7. def canEqual(other: Any): Boolean

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(other: Any): Boolean

    Definition Classes
    Row → AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def get(i: Int): Any

    Returns the value of column i.

  13. def getBoolean(i: Int): Boolean

    Returns the value of column i as a bool.

    Returns the value of column i as a bool. This function will throw an exception if the value is at i is not a boolean, or if it is null.

  14. def getByte(i: Int): Byte

    Returns the value of column i as a byte.

    Returns the value of column i as a byte. This function will throw an exception if the value is at i is not a byte, or if it is null.

  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def getDouble(i: Int): Double

    Returns the value of column i as a double.

    Returns the value of column i as a double. This function will throw an exception if the value is at i is not a double, or if it is null.

  17. def getFloat(i: Int): Float

    Returns the value of column i as a float.

    Returns the value of column i as a float. This function will throw an exception if the value is at i is not a float, or if it is null.

  18. def getInt(i: Int): Int

    Returns the value of column i as an int.

    Returns the value of column i as an int. This function will throw an exception if the value is at i is not an integer, or if it is null.

  19. def getLong(i: Int): Long

    Returns the value of column i as a long.

    Returns the value of column i as a long. This function will throw an exception if the value is at i is not a long, or if it is null.

  20. def getShort(i: Int): Short

    Returns the value of column i as a short.

    Returns the value of column i as a short. This function will throw an exception if the value is at i is not a short, or if it is null.

  21. def getString(i: Int): String

    Returns the value of column i as a String.

    Returns the value of column i as a String. This function will throw an exception if the value is at i is not a String.

  22. def hashCode(): Int

    Definition Classes
    Row → AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

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

    Returns true if value at column i is NULL.

  25. def length: Int

    Returns the number of columns present in this Row.

  26. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped