package data
- Alphabetic
- By Inheritance
- data
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class BoolVal(value: Boolean) extends DataVal with Product with Serializable
- class CombinedSeries extends Series
- trait DSeries extends AnyRef
- sealed trait DataVal extends Serializable
- case class DateVal(value: Date) extends NumericVal with Product with Serializable
- case class DoubleVal(value: Double) extends NumericVal with Product with Serializable
- case class FloatVal(value: Float) extends NumericVal with Product with Serializable
- class GenericDSeries extends DSeries
- class GenericMutableSeries extends MutableSeries
- class GenericMutableSeriesWithSchema extends GenericMutableSeries
- class GenericSeries extends Series
A series implementation that uses an array of objects as the underlying storage.
- class GenericSeriesWithSchema extends GenericSeries
- class JoinedSeries extends Series
A wrapper that makes two series appear as a single concatenated series.
- case class LongVal(value: Long) extends NumericVal with Product with Serializable
- trait MutableSeries extends Series with Clearable with Serializable
A basic trait allows the values for each column to be updated.
- trait NumericVal extends DataVal
- trait Series extends AnyRef
Represents one series of output from a relational operator.
Represents one series of output from a relational operator. Allows both generic access by ordinal, which will incur boxing overhead for primitives, as well as native primitive access.
It is invalid to use the native primitive interface to retrieve a value that is null, instead a user must check
isNullAtbefore attempting to retrieve a value that might be null. - case class StringVal(value: String) extends DataVal with Product with Serializable