Packages

c

org.pmml4s.data

GenericMutableSeriesWithSchema

class GenericMutableSeriesWithSchema extends GenericMutableSeries

Linear Supertypes
GenericMutableSeries, MutableSeries, Serializable, Clearable, Series, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GenericMutableSeriesWithSchema
  2. GenericMutableSeries
  3. MutableSeries
  4. Serializable
  5. Clearable
  6. Series
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GenericMutableSeriesWithSchema(size: Int, schema: StructType)
  2. new GenericMutableSeriesWithSchema()

    No-arg constructor for serialization.

    No-arg constructor for serialization.

    Attributes
    protected
  3. new GenericMutableSeriesWithSchema(values: Array[Any], schema: StructType)

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 anyMissing: Boolean
    Definition Classes
    Series
  5. def anyNull: Boolean

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

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

    Definition Classes
    Series
  6. def apply(i: Int): Any

    Returns the value at position i.

    Returns the value at position i. If the value is null, null is returned.

    Definition Classes
    Series
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clear(): Unit
    Definition Classes
    MutableSeriesClearable
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def columns: Array[String]
    Definition Classes
    Series
  11. def copy(): GenericSeries

    Make a copy of the current Series object.

    Make a copy of the current Series object.

    Definition Classes
    GenericMutableSeriesSeries
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def fieldIndex(name: String): Int

    Returns the index of a given field name.

    Returns the index of a given field name.

    Definition Classes
    GenericMutableSeriesWithSchemaSeries
  15. def filter(filter: Seq[String]): Series
    Definition Classes
    Series
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def get(i: Int): Any

    Returns the value at position i.

    Returns the value at position i. If the value is null, null is returned.

    Definition Classes
    GenericMutableSeriesSeries
  18. def getAs[T](fieldName: String): T

    Returns the value of a given fieldName.

    Returns the value of a given fieldName. For primitive types if value is null it returns 'zero value' specific for primitive ie. 0 for Int - use isNullAt to ensure that value is not null

    Definition Classes
    Series
    Exceptions thrown

    ClassCastException when data type does not match.

    IllegalArgumentException when fieldName do not exist.

    UnsupportedOperationException when schema is not defined.

  19. def getAs[T](i: Int): T

    Returns the value at position i.

    Returns the value at position i. For primitive types if value is null it returns 'zero value' specific for primitive ie. 0 for Int - use isNullAt to ensure that value is not null

    Definition Classes
    Series
    Exceptions thrown

    ClassCastException when data type does not match.

  20. def getBoolean(i: Int): Boolean
    Definition Classes
    Series
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getDouble(i: Int): Double
    Definition Classes
    Series
  23. def getInt(i: Int): Int
    Definition Classes
    Series
  24. def getLong(i: Int): Long
    Definition Classes
    Series
  25. def getString(i: Int): String
    Definition Classes
    Series
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def isMissingAt(i: Int): Boolean

    Checks whether the value at position i is missing (null or Double.NaN) if the position is valid, otherwise treated as missing too.

    Checks whether the value at position i is missing (null or Double.NaN) if the position is valid, otherwise treated as missing too.

    Definition Classes
    Series
  29. def isNullAt(i: Int): Boolean

    Checks whether the value at position i is null.

    Checks whether the value at position i is null.

    Definition Classes
    Series
  30. def length: Int

    Number of elements in the Series.

    Number of elements in the Series.

    Definition Classes
    GenericMutableSeriesSeries
  31. def mkString(sep: String): String
    Definition Classes
    Series
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. val schema: StructType

    Schema for the Series.

    Schema for the Series.

    Definition Classes
    GenericMutableSeriesWithSchemaSeries
  36. def setBoolean(i: Int, value: Boolean): Unit
    Definition Classes
    MutableSeries
  37. def setDouble(i: Int, value: Double): Unit
    Definition Classes
    MutableSeries
  38. def setFloat(i: Int, value: Float): Unit
    Definition Classes
    MutableSeries
  39. def setInt(i: Int, value: Int): Unit
    Definition Classes
    MutableSeries
  40. def setLong(i: Int, value: Long): Unit
    Definition Classes
    MutableSeries
  41. def setNullAt(i: Int): Unit
    Definition Classes
    GenericMutableSeriesMutableSeries
  42. def show(): Unit
    Definition Classes
    Series
  43. def size: Int

    Number of elements in the Series.

    Number of elements in the Series.

    Definition Classes
    Series
  44. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  45. def toArray: Array[Any]
    Definition Classes
    Series
  46. def toJavaMap: Map[String, Any]
    Definition Classes
    Series
  47. def toJson(isObj: Boolean = true): JsValue
    Definition Classes
    Series
  48. def toMap: Map[String, Any]
    Definition Classes
    Series
  49. def toPairSeq: Seq[(String, Any)]
    Definition Classes
    Series
  50. def toSeq: Seq[Any]
    Definition Classes
    GenericMutableSeriesSeries
  51. def toSeries: Series
  52. def toString(): String
    Definition Classes
    Series → AnyRef → Any
  53. def update(i: Int, value: Any): Unit
    Definition Classes
    GenericMutableSeriesMutableSeries
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  56. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from GenericMutableSeries

Inherited from MutableSeries

Inherited from Serializable

Inherited from Clearable

Inherited from Series

Inherited from AnyRef

Inherited from Any

Ungrouped