trait MutableSeries extends Series with Clearable with Serializable
A basic trait allows the values for each column to be updated.
- Alphabetic
- By Inheritance
- MutableSeries
- Serializable
- Clearable
- Series
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def copy(): Series
Make a copy of the current Series object.
- abstract 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
- Series
- abstract def length: Int
Number of elements in the Series.
Number of elements in the Series.
- Definition Classes
- Series
- abstract def setNullAt(i: Int): Unit
- abstract def toSeries: Series
- abstract def update(i: Int, value: Any): Unit
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def anyMissing: Boolean
- Definition Classes
- Series
- 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
- 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clear(): Unit
- Definition Classes
- MutableSeries → Clearable
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def columns: Array[String]
- Definition Classes
- Series
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fieldIndex(name: String): Int
Returns the index of a given field name.
Returns the index of a given field name.
- Definition Classes
- Series
- def filter(filter: Seq[String]): Series
- Definition Classes
- Series
- 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
ClassCastExceptionwhen data type does not match.IllegalArgumentExceptionwhen fieldName do not exist.UnsupportedOperationExceptionwhen schema is not defined.
- 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
ClassCastExceptionwhen data type does not match.
- def getBoolean(i: Int): Boolean
- Definition Classes
- Series
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def getDouble(i: Int): Double
- Definition Classes
- Series
- def getInt(i: Int): Int
- Definition Classes
- Series
- def getLong(i: Int): Long
- Definition Classes
- Series
- def getString(i: Int): String
- Definition Classes
- Series
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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
- 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
- def mkString(sep: String): String
- Definition Classes
- Series
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def schema: StructType
Schema for the Series.
Schema for the Series.
- Definition Classes
- Series
- def setBoolean(i: Int, value: Boolean): Unit
- def setDouble(i: Int, value: Double): Unit
- def setFloat(i: Int, value: Float): Unit
- def setInt(i: Int, value: Int): Unit
- def setLong(i: Int, value: Long): Unit
- def show(): Unit
- Definition Classes
- Series
- def size: Int
Number of elements in the Series.
Number of elements in the Series.
- Definition Classes
- Series
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArray: Array[Any]
- Definition Classes
- Series
- def toJavaMap: Map[String, Any]
- Definition Classes
- Series
- def toJson(isObj: Boolean = true): JsValue
- Definition Classes
- Series
- def toMap: Map[String, Any]
- Definition Classes
- Series
- def toPairSeq: Seq[(String, Any)]
- Definition Classes
- Series
- def toSeq: Seq[Any]
- Definition Classes
- Series
- def toString(): String
- Definition Classes
- Series → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)