Class/Object

ml.combust.mleap.runtime

SeqRow

Related Docs: object SeqRow | package runtime

Permalink

class SeqRow extends Row

Class for holding Row values in a Seq.

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(index: Int): Any

    Permalink

    Get value at index.

    Get value at index.

    Alias for Row#get

    index

    index of value

    returns

    value at index

    Definition Classes
    Row
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def dropIndex(index: Int): Row

    Permalink

    Drop value at specified index.

    Drop value at specified index.

    index

    index of value to drop

    returns

    new row without specified value

    Definition Classes
    SeqRowRow
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

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

    Permalink

    Get value at index.

    Get value at index.

    index

    index of value

    returns

    value at index

    Definition Classes
    SeqRowRow
  12. def getArray[T](index: Int): Array[T]

    Permalink

    Get value at index as an array.

    Get value at index as an array.

    T

    inner type of the array

    index

    index of value

    returns

    array value

    Definition Classes
    Row
  13. def getAs[T](index: Int): T

    Permalink

    Get value at index as specified type.

    Get value at index as specified type.

    T

    type of value

    index

    index of value

    returns

    value at index cast to given type

    Definition Classes
    Row
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def getDouble(index: Int): Double

    Permalink

    Get value at index as a double.

    Get value at index as a double.

    index

    index of value

    returns

    double value

    Definition Classes
    Row
  16. def getInt(index: Int): Int

    Permalink

    Get value at index as an int.

    Get value at index as an int.

    index

    index of value

    returns

    int value

    Definition Classes
    Row
  17. def getLong(index: Int): Long

    Permalink

    Get value at index as a long.

    Get value at index as a long.

    index

    index of value

    returns

    long value

    Definition Classes
    Row
  18. def getString(index: Int): String

    Permalink

    Get value at index as a string.

    Get value at index as a string.

    index

    index of value

    returns

    string value

    Definition Classes
    Row
  19. def getVector(index: Int): Vector

    Permalink

    Get value at index as a vector.

    Get value at index as a vector.

    index

    index of value

    returns

    vector value

    Definition Classes
    Row
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    Row
  23. def mkString(sep: String): String

    Permalink
    Definition Classes
    Row
  24. def mkString: String

    Permalink
    Definition Classes
    Row
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def selectIndices(indices: Int*): SeqRow

    Permalink

    Create a new row from specified indices.

    Create a new row from specified indices.

    indices

    indices to create new row with

    returns

    new row with only selected values

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

    Permalink
    Definition Classes
    AnyRef
  30. def toArray: Array[Any]

    Permalink

    Convert row to an array of values.

    Convert row to an array of values.

    returns

    array of values from row

    Definition Classes
    SeqRowRow
  31. def toSeq: Seq[Any]

    Permalink

    Convert row to a seq of values.

    Convert row to a seq of values.

    returns

    seq of values from row

    Definition Classes
    SeqRowRow
  32. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withValue(value: Any): Row

    Permalink

    Add a value to the row.

    Add a value to the row.

    value

    value to add

    returns

    row with the new value

    Definition Classes
    SeqRowRow
  37. def withValue(selectors: RowSelector*)(udf: UserDefinedFunction): Row

    Permalink

    Add value to row with a user defined function.

    Add value to row with a user defined function.

    selectors

    row selectors to generate inputs to function

    udf

    user defined function to call

    returns

    row with calculated value added

    Definition Classes
    Row

Inherited from Row

Inherited from AnyRef

Inherited from Any

Ungrouped