Package io.deephaven.engine.table.impl
Interface MutableColumnSourceGetDefaults.LongBacked<DATA_TYPE>
- All Superinterfaces:
ChunkSource<Values>,ChunkSource.WithPrev<Values>,ColumnSource<DATA_TYPE>,ColumnSourceGetDefaults.LongBacked<DATA_TYPE>,ElementSource<DATA_TYPE>,FillContextMaker,GetContextMaker,MutableColumnSource<DATA_TYPE>,Releasable,TupleExporter<DATA_TYPE>,TupleSource<DATA_TYPE>
- All Known Subinterfaces:
MutableColumnSourceGetDefaults.ForLong,MutableColumnSourceGetDefaults.ForLongAsInstant
- All Known Implementing Classes:
InstantArraySource,InstantAsLongColumnSource,InstantSparseArraySource,LongArraySource,LongSingleValueSource,LongSparseArraySource,RowPositionColumnSource,UnboxedLongBackedColumnSource,UnboxedLongBackedColumnSource,UnboxedTimeBackedColumnSource,UngroupedLongArrayColumnSource,UngroupedLongVectorColumnSource,ZonedDateTimeAsLongSource
- Enclosing class:
- MutableColumnSourceGetDefaults
public static interface MutableColumnSourceGetDefaults.LongBacked<DATA_TYPE>
extends ColumnSourceGetDefaults.LongBacked<DATA_TYPE>, MutableColumnSource<DATA_TYPE>
Default interface for mutable 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 BooleangetPrevBoolean(long rowKey) Get the previous value at the rowKey as a Boolean.default bytegetPrevByte(long rowKey) Get the previous value at the rowKey as a byte.default chargetPrevChar(long rowKey) Get the previous value at the rowKey as a char.default doublegetPrevDouble(long rowKey) Get the previous value at the rowKey as a double.default floatgetPrevFloat(long rowKey) Get the previous value at the rowKey as a float.default intgetPrevInt(long rowKey) Get the previous value at the rowKey as an int.default shortgetPrevShort(long rowKey) Get the previous 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, isStateless, match, reinterpret, releaseCachedResources, startTrackingPrevValues, tupleLengthMethods inherited from interface io.deephaven.engine.table.impl.ColumnSourceGetDefaults.LongBacked
getBoolean, getByte, getChar, getDouble, getFloat, getInt, getShortMethods inherited from interface io.deephaven.engine.table.ElementSource
get, getLong, getPrev, getPrevLongMethods 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.impl.MutableColumnSource
isImmutableMethods inherited from interface io.deephaven.engine.table.TupleExporter
exportAllReinterpretedTo, exportAllReinterpretedTo, exportAllTo, exportElementReinterpretedMethods inherited from interface io.deephaven.engine.table.TupleSource
createTupleFromReinterpretedValues
-
Method Details
-
getPrevBoolean
Description copied from interface:ElementSourceGet the previous value at the rowKey as a Boolean. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevBooleanin interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous boolean at the rowKey, potentially null.
-
getPrevByte
default byte getPrevByte(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as a byte. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevBytein interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous boolean at the rowKey, null values are represented by
QueryConstants.NULL_BYTE
-
getPrevChar
default char getPrevChar(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as a char. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevCharin interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- ohe location in key space to get the previous value from.- Returns:
- the previous char at the rowKey, null values are represented by
QueryConstants.NULL_CHAR
-
getPrevDouble
default double getPrevDouble(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as a double. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevDoublein interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous double at the rowKey, null values are represented by
QueryConstants.NULL_DOUBLE
-
getPrevFloat
default float getPrevFloat(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as a float. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevFloatin interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous float at the rowKey, null values are represented by
QueryConstants.NULL_FLOAT
-
getPrevInt
default int getPrevInt(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as an int. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevIntin interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous int at the rowKey, null values are represented by
QueryConstants.NULL_INT
-
getPrevShort
default short getPrevShort(long rowKey) Description copied from interface:ElementSourceGet the previous value at the rowKey as a short. SeeElementSource.getPrev(long)for more details. RowKeys that were not present are undefined.- Specified by:
getPrevShortin interfaceElementSource<DATA_TYPE>- Parameters:
rowKey- the location in key space to get the previous value from.- Returns:
- the previous short at the rowKey, null values are represented by
QueryConstants.NULL_SHORT
-