class Row extends Serializable

Represents a row returned by the evaluation of a DataFrame .

Since

0.1.0

Linear Supertypes
Serializable , Serializable , AnyRef , Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. Row
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def != ( arg0: Any ) : Boolean
    Definition Classes
    AnyRef → Any
  2. final def ## () : Int
    Definition Classes
    AnyRef → Any
  3. final def == ( arg0: Any ) : Boolean
    Definition Classes
    AnyRef → Any
  4. def apply ( index: Int ) : Any

    Returns the value of the column in the row at the given index.

    Returns the value of the column in the row at the given index. Alias of get

    Since

    0.1.0

  5. final def asInstanceOf [ T0 ] : T0
    Definition Classes
    Any
  6. def clone () : AnyRef

    Returns a clone of this row object.

    Returns a clone of this row object. Alias of copy

    Definition Classes
    Row → AnyRef
    Since

    0.1.0

  7. def copy () : Row

    Returns a clone of this row.

    Returns a clone of this row.

    Since

    0.1.0

  8. final def eq ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  9. def equals ( obj: Any ) : Boolean

    Returns true iff the given row equals this row.

    Returns true iff the given row equals this row.

    Definition Classes
    Row → AnyRef → Any
    Since

    0.1.0

  10. def get ( index: Int ) : Any

    Returns the value of the column in the row at the given index.

    Returns the value of the column in the row at the given index.

    Since

    0.1.0

  11. def getBinary ( index: Int ) : Array [ Byte ]

    Returns the value of the column at the given index as a Byte array value.

    Returns the value of the column at the given index as a Byte array value.

    Since

    0.2.0

  12. def getBoolean ( index: Int ) : Boolean

    Returns the value of the column at the given index as a Boolean value

    Returns the value of the column at the given index as a Boolean value

    Since

    0.1.0

  13. def getByte ( index: Int ) : Byte

    Returns the value of the column at the given index as a Byte value.

    Returns the value of the column at the given index as a Byte value. Casts Short, Int, Long number to Byte if possible.

    Since

    0.1.0

  14. final def getClass () : Class [_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  15. def getDate ( index: Int ) : Date

    Returns the value of the column at the given index as a Date value

    Returns the value of the column at the given index as a Date value

    Since

    0.1.0

  16. def getDecimal ( index: Int ) : BigDecimal

    Returns the value of the column at the given index as a BigDecimal value

    Returns the value of the column at the given index as a BigDecimal value

    Since

    0.1.0

  17. def getDouble ( index: Int ) : Double

    Returns the value of the column at the given index as a Double value.

    Returns the value of the column at the given index as a Double value. Casts Byte, Short, Int, Long, Float number to Double.

    Since

    0.1.0

  18. def getFloat ( index: Int ) : Float

    Returns the value of the column at the given index as a Float value.

    Returns the value of the column at the given index as a Float value. Casts Byte, Short, Int, Long and Double number to Float if possible.

    Since

    0.1.0

  19. def getGeography ( index: Int ) : Geography

    Returns the value of the column at the given index as Geography class

    Returns the value of the column at the given index as Geography class

    Since

    0.2.0

  20. def getInt ( index: Int ) : Int

    Returns the value of the column at the given index as a Int value.

    Returns the value of the column at the given index as a Int value. Casts Byte, Short, Long number to Int if possible.

    Since

    0.1.0

  21. def getLong ( index: Int ) : Long

    Returns the value of the column at the given index as a Long value.

    Returns the value of the column at the given index as a Long value. Casts Byte, Short, Int number to Long if possible.

    Since

    0.1.0

  22. def getMapOfVariant ( index: Int ) : Map [ String , Variant ]

    Returns the value of the column at the given index as a java map of Variant

    Returns the value of the column at the given index as a java map of Variant

    Since

    0.2.0

  23. def getSeqOfVariant ( index: Int ) : Seq [ Variant ]

    Returns the value of the column at the given index as a Seq of Variant

    Returns the value of the column at the given index as a Seq of Variant

    Since

    0.2.0

  24. def getShort ( index: Int ) : Short

    Returns the value of the column at the given index as a Short value.

    Returns the value of the column at the given index as a Short value. Casts Byte, Int, Long number to Short if possible.

    Since

    0.1.0

  25. def getString ( index: Int ) : String

    Returns the value of the column at the given index as a String value.

    Returns the value of the column at the given index as a String value. Returns geography data as string, if geography data of GeoJSON, WKT or EWKT is found.

    Since

    0.1.0

  26. def getTime ( index: Int ) : Time

    Returns the value of the column at the given index as a Time value

    Returns the value of the column at the given index as a Time value

    Since

    0.2.0

  27. def getTimestamp ( index: Int ) : Timestamp

    Returns the value of the column at the given index as a Timestamp value

    Returns the value of the column at the given index as a Timestamp value

    Since

    0.2.0

  28. def getVariant ( index: Int ) : Variant

    Returns the value of the column at the given index as Variant class

    Returns the value of the column at the given index as Variant class

    Since

    0.2.0

  29. def hashCode () : Int

    Calculates hashcode of this row.

    Calculates hashcode of this row.

    Definition Classes
    Row → AnyRef → Any
    Since

    0.1.0

  30. final def isInstanceOf [ T0 ] : Boolean
    Definition Classes
    Any
  31. def isNullAt ( index: Int ) : Boolean

    Returns true if the value of the column at the given index is null, otherwise, returns false.

    Returns true if the value of the column at the given index is null, otherwise, returns false.

    Since

    0.1.0

  32. def length : Int

    Total number of Column in this Row

    Total number of Column in this Row

    Since

    0.1.0

  33. final def ne ( arg0: AnyRef ) : Boolean
    Definition Classes
    AnyRef
  34. final def notify () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  35. final def notifyAll () : Unit
    Definition Classes
    AnyRef
    Annotations
    @native () @HotSpotIntrinsicCandidate ()
  36. def size : Int

    Total number of Column in this Row .

    Total number of Column in this Row . Alias of length

    Since

    0.1.0

  37. final def synchronized [ T0 ] ( arg0: ⇒ T0 ) : T0
    Definition Classes
    AnyRef
  38. def toSeq : Seq [ Any ]

    Converts this Row to a Seq

    Converts this Row to a Seq

    Since

    0.1.0

  39. def toString () : String

    Returns a string value to represent the content of this row

    Returns a string value to represent the content of this row

    Definition Classes
    Row → AnyRef → Any
    Since

    0.1.0

  40. final def wait ( arg0: Long , arg1: Int ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )
  41. final def wait ( arg0: Long ) : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... ) @native ()
  42. final def wait () : Unit
    Definition Classes
    AnyRef
    Annotations
    @throws ( ... )

Deprecated Value Members

  1. def finalize () : Unit
    Attributes
    protected[ lang ]
    Definition Classes
    AnyRef
    Annotations
    @throws ( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Getter Functions

Utility Functions

Ungrouped