Package io.deephaven.engine.table.impl
Interface ColumnSourceGetDefaults.LongBacked<DATA_TYPE>
- All Superinterfaces:
ChunkSource<Values>,ChunkSource.WithPrev<Values>,ColumnSource<DATA_TYPE>,ElementSource<DATA_TYPE>,FillContextMaker,GetContextMaker,Releasable,TupleExporter<DATA_TYPE>,TupleSource<DATA_TYPE>
- All Known Subinterfaces:
ColumnSourceGetDefaults.ForLong,ColumnSourceGetDefaults.ForLongAsInstant,ImmutableColumnSourceGetDefaults.ForLong,ImmutableColumnSourceGetDefaults.ForLongAsInstant,ImmutableColumnSourceGetDefaults.LongBacked<DATA_TYPE>,MutableColumnSourceGetDefaults.ForLong,MutableColumnSourceGetDefaults.ForLongAsInstant,MutableColumnSourceGetDefaults.LongBacked<DATA_TYPE>
- All Known Implementing Classes:
ArrowLongColumnSource,ArrowUInt4ColumnSource,Immutable2DInstantArraySource,Immutable2DLongArraySource,ImmutableConstantInstantSource,ImmutableConstantLongSource,ImmutableInstantArraySource,ImmutableLongArraySource,InstantArraySource,InstantAsLongColumnSource,InstantSparseArraySource,LongArraySource,LongChunkColumnSource,LongSingleValueSource,LongSparseArraySource,RowKeyColumnSource,RowPositionColumnSource,UnboxedLongBackedColumnSource,UnboxedLongBackedColumnSource,UnboxedTimeBackedColumnSource,UngroupedLongArrayColumnSource,UngroupedLongVectorColumnSource,ZonedDateTimeAsLongSource
- Enclosing class:
- ColumnSourceGetDefaults
public static interface ColumnSourceGetDefaults.LongBacked<DATA_TYPE>
extends ColumnSource<DATA_TYPE>
Default interface for long-backed
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_ARRAYFields inherited from interface io.deephaven.engine.table.ChunkSource.WithPrev
ZERO_LENGTH_CHUNK_SOURCE_WITH_PREV_ARRAYFields inherited from interface io.deephaven.engine.table.ColumnSource
ZERO_LENGTH_COLUMN_SOURCE_ARRAY -
Method Summary
Modifier and TypeMethodDescriptiondefault BooleangetBoolean(long rowKey) Get the value at the rowKey as a Boolean.default bytegetByte(long rowKey) Get the value at the rowKey as a byte.default chargetChar(long rowKey) Get the value at the rowKey as a char.default doublegetDouble(long rowKey) Get the value at the rowKey as a double.default floatgetFloat(long rowKey) Get the value at the rowKey as a float.default intgetInt(long rowKey) Get the value at the rowKey as an int.default shortgetShort(long rowKey) Get the value at the rowKey as a short.Methods inherited from interface io.deephaven.engine.table.ChunkSource
fillChunk, getChunk, getChunkMethods inherited from interface io.deephaven.engine.table.ChunkSource.WithPrev
fillPrevChunk, getPrevChunk, getPrevChunkMethods inherited from interface io.deephaven.engine.table.ColumnSource
allowsReinterpret, cast, cast, cast, cast, createPreviousTuple, createTuple, createTupleFromValues, exportAllTo, exportElement, exportElement, getChunkType, getComponentType, getPrevSource, getType, isImmutable, isStateless, match, reinterpret, releaseCachedResources, startTrackingPrevValues, tupleLengthMethods inherited from interface io.deephaven.engine.table.ElementSource
get, getLong, getPrev, getPrevBoolean, getPrevByte, getPrevChar, getPrevDouble, getPrevFloat, getPrevInt, getPrevLong, getPrevShortMethods inherited from interface io.deephaven.engine.table.FillContextMaker
makeFillContext, makeFillContextMethods inherited from interface io.deephaven.engine.table.GetContextMaker
makeGetContext, makeGetContextMethods inherited from interface io.deephaven.engine.table.TupleExporter
exportAllReinterpretedTo, exportAllReinterpretedTo, exportAllTo, exportElementReinterpretedMethods inherited from interface io.deephaven.engine.table.TupleSource
createTupleFromReinterpretedValues
-
Method Details
-
getBoolean
Description copied from interface:ElementSourceGet the value at the rowKey as a Boolean. RowKeys that are not present are undefined.- Specified by:
getBooleanin interfaceElementSource<DATA_TYPE>- 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:ElementSourceGet the value at the rowKey as a byte. RowKeys that are not present are undefined.- Specified by:
getBytein interfaceElementSource<DATA_TYPE>- 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:ElementSourceGet the value at the rowKey as a char. RowKeys that are not present are undefined.- Specified by:
getCharin interfaceElementSource<DATA_TYPE>- 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
-
getDouble
default double getDouble(long rowKey) Description copied from interface:ElementSourceGet the value at the rowKey as a double. RowKeys that are not present are undefined.- Specified by:
getDoublein interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the value from.- Returns:
- the double at the rowKey, null values are represented by
QueryConstants.NULL_DOUBLE
-
getFloat
default float getFloat(long rowKey) Description copied from interface:ElementSourceGet the value at the rowKey as a float. RowKeys that are not present are undefined.- Specified by:
getFloatin interfaceElementSource<DATA_TYPE>- 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:ElementSourceGet the value at the rowKey as an int. RowKeys that are not present are undefined.- Specified by:
getIntin interfaceElementSource<DATA_TYPE>- 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
-
getShort
default short getShort(long rowKey) Description copied from interface:ElementSourceGet the value at the rowKey as a short. RowKeys that are not present are undefined.- Specified by:
getShortin interfaceElementSource<DATA_TYPE>- 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
-