package data
- Alphabetic
- By Inheritance
- data
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class CombinedSeries extends Series
- trait DSeries extends Series
- 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.
- trait MutableSeries extends Series with Clearable with Serializable
A basic trait allows the values for each column to be updated.
- 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.