Packages

t

org.apache.spark.sql.catalyst.expressions

BaseGenericInternalRow

trait BaseGenericInternalRow extends InternalRow

An extended version of InternalRow that implements all special getters, toString and equals/hashCode by genericGet.

Linear Supertypes
InternalRow, Serializable, Serializable, SpecializedGetters, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BaseGenericInternalRow
  2. InternalRow
  3. Serializable
  4. Serializable
  5. SpecializedGetters
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def genericGet(ordinal: Int): Any
    Attributes
    protected
  2. abstract def numFields: Int
    Definition Classes
    InternalRow
  3. abstract def setNullAt(i: Int): Unit
    Definition Classes
    InternalRow
  4. abstract def update(i: Int, value: Any): Unit

    Updates the value at column i.

    Updates the value at column i. Note that after updating, the given value will be kept in this row, and the caller side should guarantee that this value won't be changed afterwards.

    Definition Classes
    InternalRow

Concrete 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 anyNull: Boolean

    Returns true if there are any NULL values in this row.

    Returns true if there are any NULL values in this row.

    Definition Classes
    InternalRow
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. def copy(): GenericInternalRow

    Make a copy of the current InternalRow object.

    Make a copy of the current InternalRow object.

    Definition Classes
    BaseGenericInternalRowInternalRow
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(o: Any): Boolean
    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  10. def get(ordinal: Int, dataType: DataType): AnyRef
  11. def getArray(ordinal: Int): ArrayData
  12. def getBinary(ordinal: Int): Array[Byte]
  13. def getBoolean(ordinal: Int): Boolean
  14. def getByte(ordinal: Int): Byte
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getDecimal(ordinal: Int, precision: Int, scale: Int): Decimal
  17. def getDouble(ordinal: Int): Double
  18. def getFloat(ordinal: Int): Float
  19. def getInt(ordinal: Int): Int
  20. def getInterval(ordinal: Int): CalendarInterval
  21. def getLong(ordinal: Int): Long
  22. def getMap(ordinal: Int): MapData
  23. def getShort(ordinal: Int): Short
  24. def getString(ordinal: Int): String
    Definition Classes
    InternalRow
  25. def getStruct(ordinal: Int, numFields: Int): InternalRow
  26. def getUTF8String(ordinal: Int): UTF8String
  27. def hashCode(): Int
    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def isNullAt(ordinal: Int): Boolean
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. def setBoolean(i: Int, value: Boolean): Unit
    Definition Classes
    InternalRow
  34. def setByte(i: Int, value: Byte): Unit
    Definition Classes
    InternalRow
  35. def setDecimal(i: Int, value: Decimal, precision: Int): Unit

    Update the decimal column at i.

    Update the decimal column at i.

    Note: In order to support update decimal with precision > 18 in UnsafeRow, CAN NOT call setNullAt() for decimal column on UnsafeRow, call setDecimal(i, null, precision).

    Definition Classes
    InternalRow
  36. def setDouble(i: Int, value: Double): Unit
    Definition Classes
    InternalRow
  37. def setFloat(i: Int, value: Float): Unit
    Definition Classes
    InternalRow
  38. def setInt(i: Int, value: Int): Unit
    Definition Classes
    InternalRow
  39. def setInterval(i: Int, value: CalendarInterval): Unit
    Definition Classes
    InternalRow
  40. def setLong(i: Int, value: Long): Unit
    Definition Classes
    InternalRow
  41. def setShort(i: Int, value: Short): Unit
    Definition Classes
    InternalRow
  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def toSeq(schema: StructType): Seq[Any]
    Definition Classes
    InternalRow
  44. def toSeq(fieldTypes: Seq[DataType]): Seq[Any]

    Return a Scala Seq representing the row.

    Return a Scala Seq representing the row. Elements are placed in the same order in the Seq.

    Definition Classes
    InternalRow
  45. def toString(): String
    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  48. 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

Inherited from InternalRow

Inherited from Serializable

Inherited from Serializable

Inherited from SpecializedGetters

Inherited from AnyRef

Inherited from Any

Ungrouped