ml.combust.mleap.runtime

SeqRow

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
Learn more about member selection
Visibility
  1. Public
  2. All

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 apply(index: Int): Any

    Get value at index.

    Get value at index.

    Alias for Row#get

    index

    index of value

    returns

    value at index

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

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

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

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

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

    Get value at index.

    Get value at index.

    index

    index of value

    returns

    value at index

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

    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
  15. def getAs[T](index: Int): T

    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
  16. final def getClass(): Class[_]

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

    Get value at index as a double.

    Get value at index as a double.

    index

    index of value

    returns

    double value

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

    Get value at index as an int.

    Get value at index as an int.

    index

    index of value

    returns

    int value

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

    Get value at index as a string.

    Get value at index as a string.

    index

    index of value

    returns

    string value

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

    Get value at index as a vector.

    Get value at index as a vector.

    index

    index of value

    returns

    vector value

    Definition Classes
    Row
  21. def hashCode(): Int

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

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

    Definition Classes
    Row
  24. def mkString(sep: String): String

    Definition Classes
    Row
  25. def mkString: String

    Definition Classes
    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. def selectIndices(indices: Int*): SeqRow

    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
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toArray: Array[Any]

    Convert row to an array of values.

    Convert row to an array of values.

    returns

    array of values from row

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

    Convert row to a seq of values.

    Convert row to a seq of values.

    returns

    seq of values from row

    Definition Classes
    SeqRowRow
  33. def toString(): String

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

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

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

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

    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
  38. def withValue(f: (Row) ⇒ Any): Row

    Add a value to the row.

    Add a value to the row.

    f

    function for calculating new value

    returns

    row with new value

    Definition Classes
    Row
  39. def withValues(vs: Row): Row

    Add multiple values to the row.

    Add multiple values to the row.

    returns

    row with new values

    Definition Classes
    SeqRowRow
  40. def withValues(f: (Row) ⇒ Row): Row

    Add multiple values to the row.

    Add multiple values to the row.

    f

    function for calculating new row values

    returns

    row with new values

    Definition Classes
    Row

Inherited from Row

Inherited from AnyRef

Inherited from Any

Ungrouped