Package io.deephaven.engine.table.impl
Interface ColumnSourceGetDefaults.ForDouble
- All Superinterfaces:
ChunkSource<Values>
,ChunkSource.WithPrev<Values>
,ColumnSource<Double>
,ElementSource<Double>
,FillContextMaker
,GetContextMaker
,Releasable
,TupleExporter<Double>
,TupleSource<Double>
- All Known Subinterfaces:
ImmutableColumnSourceGetDefaults.ForDouble
,MutableColumnSourceGetDefaults.ForDouble
- All Known Implementing Classes:
ArrowDoubleColumnSource
,DoubleArraySource
,DoubleChunkColumnSource
,DoubleNullToZeroColumnSource
,DoubleSingleValueSource
,DoubleSparseArraySource
,Immutable2DDoubleArraySource
,ImmutableConstantDoubleSource
,ImmutableDoubleArraySource
,UngroupedDoubleArrayColumnSource
,UngroupedDoubleVectorColumnSource
- Enclosing class:
- ColumnSourceGetDefaults
Default interface for double
ColumnSource
implementations.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.engine.table.ChunkSource
ChunkSource.FillContext, ChunkSource.GetContext, ChunkSource.WithPrev<ATTR extends Any>
Nested classes/interfaces inherited from interface io.deephaven.engine.table.TupleExporter
TupleExporter.ExportElementFunction<TUPLE_TYPE>
-
Field Summary
Fields inherited from interface io.deephaven.engine.table.ChunkSource
DEFAULT_FILL_INSTANCE, ZERO_LENGTH_CHUNK_SOURCE_ARRAY
Fields inherited from interface io.deephaven.engine.table.ChunkSource.WithPrev
ZERO_LENGTH_CHUNK_SOURCE_WITH_PREV_ARRAY
Fields inherited from interface io.deephaven.engine.table.ColumnSource
ZERO_LENGTH_COLUMN_SOURCE_ARRAY
-
Method Summary
Modifier and TypeMethodDescriptiondefault Double
get
(long rowKey) Get the value from the source.default Boolean
getBoolean
(long rowKey) Get the value at the rowKey as a Boolean.default byte
getByte
(long rowKey) Get the value at the rowKey as a byte.default char
getChar
(long rowKey) Get the value at the rowKey as a char.default float
getFloat
(long rowKey) Get the value at the rowKey as a float.default int
getInt
(long rowKey) Get the value at the rowKey as an int.default long
getLong
(long rowKey) Get the value at the rowKey as a long.default short
getShort
(long rowKey) Get the value at the rowKey as a short.Methods inherited from interface io.deephaven.engine.table.ChunkSource
fillChunk, getChunk, getChunk
Methods inherited from interface io.deephaven.engine.table.ChunkSource.WithPrev
fillPrevChunk, getPrevChunk, getPrevChunk
Methods inherited from interface io.deephaven.engine.table.ColumnSource
allowsReinterpret, cast, cast, createPreviousTuple, createTuple, createTupleFromValues, exportAllTo, exportElement, exportElement, getChunkType, getComponentType, getPrevSource, getType, isImmutable, isStateless, match, reinterpret, releaseCachedResources, startTrackingPrevValues, tupleLength
Methods inherited from interface io.deephaven.engine.table.ElementSource
getDouble, getPrev, getPrevBoolean, getPrevByte, getPrevChar, getPrevDouble, getPrevFloat, getPrevInt, getPrevLong, getPrevShort
Methods inherited from interface io.deephaven.engine.table.FillContextMaker
makeFillContext, makeFillContext
Methods inherited from interface io.deephaven.engine.table.GetContextMaker
makeGetContext, makeGetContext
Methods inherited from interface io.deephaven.engine.table.TupleExporter
exportAllReinterpretedTo, exportAllReinterpretedTo, exportAllTo, exportElementReinterpreted
Methods inherited from interface io.deephaven.engine.table.TupleSource
createTupleFromReinterpretedValues
-
Method Details
-
get
Description copied from interface:ElementSource
Get the value from the source. This may return boxed values for basic types. RowKeys that are not present are undefined.- Specified by:
get
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the value at the rowKey, potentially null.
-
getBoolean
Description copied from interface:ElementSource
Get the value at the rowKey as a Boolean. RowKeys that are not present are undefined.- Specified by:
getBoolean
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the boolean at the rowKey, potentially null.
-
getByte
default byte getByte(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as a byte. RowKeys that are not present are undefined.- Specified by:
getByte
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the boolean at the rowKey, null values are represented by
QueryConstants.NULL_BYTE
-
getChar
default char getChar(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as a char. RowKeys that are not present are undefined.- Specified by:
getChar
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the char at the rowKey, null values are represented by
QueryConstants.NULL_CHAR
-
getFloat
default float getFloat(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as a float. RowKeys that are not present are undefined.- Specified by:
getFloat
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the float at the rowKey, null values are represented by
QueryConstants.NULL_FLOAT
-
getInt
default int getInt(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as an int. RowKeys that are not present are undefined.- Specified by:
getInt
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the int at the rowKey, null values are represented by
QueryConstants.NULL_INT
-
getLong
default long getLong(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as a long. RowKeys that are not present are undefined.- Specified by:
getLong
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the long at the rowKey, null values are represented by
QueryConstants.NULL_LONG
-
getShort
default short getShort(long rowKey) Description copied from interface:ElementSource
Get the value at the rowKey as a short. RowKeys that are not present are undefined.- Specified by:
getShort
in interfaceElementSource<Double>
- Parameters:
rowKey
- the location in key space to get the value from.- Returns:
- the short at the rowKey, null values are represented by
QueryConstants.NULL_SHORT
-