org.apache.spark.sql.catalyst.expressions

SpecificMutableRow

class SpecificMutableRow extends MutableRow with BaseGenericInternalRow

A row type that holds an array specialized container objects, of type MutableValue, chosen based on the dataTypes of each column. The intent is to decrease garbage when modifying the values of primitive columns.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SpecificMutableRow
  2. BaseGenericInternalRow
  3. MutableRow
  4. InternalRow
  5. Serializable
  6. Serializable
  7. SpecializedGetters
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SpecificMutableRow()

  2. new SpecificMutableRow(dataTypes: Seq[DataType])

  3. new SpecificMutableRow(values: Array[MutableValue])

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. 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
    BaseGenericInternalRowInternalRow
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def copy(): InternalRow

    Make a copy of the current InternalRow object.

    Make a copy of the current InternalRow object.

    Definition Classes
    SpecificMutableRowInternalRow
  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  12. def finalize(): Unit

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

    Attributes
    protected
    Definition Classes
    SpecificMutableRowBaseGenericInternalRow
  14. def get(ordinal: Int, dataType: DataType): AnyRef

  15. def getArray(ordinal: Int): ArrayData

  16. def getBinary(ordinal: Int): Array[Byte]

  17. final def getBoolean(i: Int): Boolean

  18. final def getByte(i: Int): Byte

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

    Definition Classes
    AnyRef → Any
  20. def getDecimal(ordinal: Int, precision: Int, scale: Int): Decimal

  21. final def getDouble(i: Int): Double

  22. final def getFloat(i: Int): Float

  23. final def getInt(i: Int): Int

  24. def getInterval(ordinal: Int): CalendarInterval

  25. final def getLong(i: Int): Long

  26. def getMap(ordinal: Int): MapData

  27. final def getShort(i: Int): Short

  28. def getString(ordinal: Int): String

    Definition Classes
    InternalRow
  29. def getStruct(ordinal: Int, numFields: Int): InternalRow

  30. def getUTF8String(ordinal: Int): UTF8String

  31. def hashCode(): Int

    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  32. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Definition Classes
    AnyRef
  37. final def numFields: Int

    Definition Classes
    SpecificMutableRowInternalRow
  38. final def setBoolean(ordinal: Int, value: Boolean): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  39. final def setByte(ordinal: Int, value: Byte): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  40. 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
    MutableRow
  41. final def setDouble(ordinal: Int, value: Double): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  42. final def setFloat(ordinal: Int, value: Float): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  43. final def setInt(ordinal: Int, value: Int): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  44. final def setLong(ordinal: Int, value: Long): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  45. final def setNullAt(i: Int): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  46. final def setShort(ordinal: Int, value: Short): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  47. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  48. def toSeq(schema: StructType): Seq[Any]

    Definition Classes
    InternalRow
  49. 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
  50. def toString(): String

    Definition Classes
    BaseGenericInternalRow → AnyRef → Any
  51. final def update(ordinal: Int, value: Any): Unit

    Definition Classes
    SpecificMutableRowMutableRow
  52. val values: Array[MutableValue]

  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BaseGenericInternalRow

Inherited from MutableRow

Inherited from InternalRow

Inherited from Serializable

Inherited from Serializable

Inherited from SpecializedGetters

Inherited from AnyRef

Inherited from Any

Ungrouped