Package com.illumon.iris.db.v2.sources
Interface MutableColumnSourceGetDefaults.ForObject<DATA_TYPE>
- All Superinterfaces:
ChunkSource<Attributes.Values>
,ChunkSource.WithPrev<Attributes.Values>
,ColumnSource<DATA_TYPE>
,ColumnSourceGetDefaults.ForObject<DATA_TYPE>
,DefaultChunkSource<Attributes.Values>
,DefaultChunkSource.WithPrev<Attributes.Values>
,ElementSource<DATA_TYPE>
,FillContextMaker
,GetContextMaker
,MutableColumnSource<DATA_TYPE>
,Releasable
,TupleExporter<DATA_TYPE>
,TupleSource<DATA_TYPE>
- All Known Subinterfaces:
AggregateColumnSource<DB_ARRAY_TYPE,COMPONENT_TYPE>
- All Known Implementing Classes:
AbstractColumnSource.DefaultedMutable
,BoxedColumnSource
,BoxedColumnSource.OfDateTime
,BoxedLongAsTimeSource
,ByteAggregateColumnSource
,ByteSsmBackedSource
,CharAggregateColumnSource
,CharSsmBackedSource
,DbDateTimeSsmSourceWrapper
,DoubleAggregateColumnSource
,DoubleSsmBackedSource
,EmptyToNullStringRegionedColumnSource
,FloatAggregateColumnSource
,FloatSsmBackedSource
,IntAggregateColumnSource
,IntSsmBackedSource
,ListAggregateColumnSource
,LocalDateWrapperSource
,LocalTimeWrapperSource
,LongAggregateColumnSource
,LongAsDateTimeColumnSource
,LongAsInstantColumnSource
,LongAsLocalDateColumnSource
,LongAsLocalTimeColumnSource
,LongAsZonedDateTimeColumnSource
,LongSsmBackedSource
,ObjectAggregateColumnSource
,ObjectArraySource
,ObjectSingleValueSource
,ObjectSparseArraySource
,ObjectSsmBackedSource
,ShortAggregateColumnSource
,ShortSsmBackedSource
,SmartKeySource
,UngroupedArrayColumnSource
,UngroupedBoxedByteArrayColumnSource
,UngroupedBoxedByteDbArrayColumnSource
,UngroupedBoxedCharArrayColumnSource
,UngroupedBoxedCharDbArrayColumnSource
,UngroupedBoxedDoubleArrayColumnSource
,UngroupedBoxedDoubleDbArrayColumnSource
,UngroupedBoxedFloatArrayColumnSource
,UngroupedBoxedFloatDbArrayColumnSource
,UngroupedBoxedIntArrayColumnSource
,UngroupedBoxedIntDbArrayColumnSource
,UngroupedBoxedLongArrayColumnSource
,UngroupedBoxedLongDbArrayColumnSource
,UngroupedBoxedShortArrayColumnSource
,UngroupedBoxedShortDbArrayColumnSource
,UngroupedDbArrayColumnSource
,ZonedDateTimeArraySource
,ZonedDateTimeSparseArraySource
- Enclosing class:
- MutableColumnSourceGetDefaults
public static interface MutableColumnSourceGetDefaults.ForObject<DATA_TYPE> extends ColumnSourceGetDefaults.ForObject<DATA_TYPE>, MutableColumnSource<DATA_TYPE>
Default interface for mutable Object
ColumnSource
implementations.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
ChunkSource.FillContext, ChunkSource.GetContext, ChunkSource.WithPrev<ATTR extends Attributes.Any>
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource
DefaultChunkSource.SupportsContiguousGet<ATTR extends Attributes.Any>, DefaultChunkSource.WithPrev<ATTR extends Attributes.Any>
-
Field Summary
Fields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
DEFAULT_FILL_INSTANCE, ZERO_LENGTH_CHUNK_SOURCE_ARRAY
Fields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource.WithPrev
ZERO_LENGTH_CHUNK_SOURCE_WITH_PREV_ARRAY
Fields inherited from interface com.illumon.iris.db.v2.sources.ColumnSource
ZERO_LENGTH_COLUMN_SOURCE_ARRAY
-
Method Summary
Modifier and Type Method Description default Boolean
getPrevBoolean(long index)
Get the previous value at the index as a Boolean.default byte
getPrevByte(long index)
Get the previous value at the index as a byte.default char
getPrevChar(long index)
Get the previous value at the index as a char.default double
getPrevDouble(long index)
Get the previous value at the index as a double.default float
getPrevFloat(long index)
Get the previous value at the index as a float.default int
getPrevInt(long index)
Get the previous value at the index as an int.default long
getPrevLong(long index)
Get the previous value at the index as a long.default short
getPrevShort(long index)
Get the previous value at the index as a short.Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
fillChunk, getChunkType
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource.WithPrev
fillPrevChunk
Methods inherited from interface com.illumon.iris.db.v2.sources.ColumnSource
allowsReinterpret, cast, createPreviousTuple, createTuple, createTupleFromValues, exportElement, exportElement, exportToExternalKey, getColumnSources, getComponentType, getGroupingBuilder, getGroupingProvider, getNativeType, getPrevSource, getType, hasGrouping, match, reinterpret, releaseCachedResources, setGroupingProvider, startTrackingPrevValues
Methods inherited from interface com.illumon.iris.db.v2.sources.ColumnSourceGetDefaults.ForObject
getBoolean, getByte, getChar, getDouble, getFloat, getInt, getLong, getShort
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource
getChunk, getChunk, getChunkByFilling, makeFillContext, makeGetContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource.WithPrev
getPrevChunk, getPrevChunk, getPrevChunkByFilling
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.FillContextMaker
makeFillContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.GetContextMaker
makeGetContext
Methods inherited from interface com.illumon.iris.db.v2.tuples.TupleExporter
exportElementReinterpreted
Methods inherited from interface com.illumon.iris.db.v2.tuples.TupleSource
createTupleFromReinterpretedValues
-
Method Details
-
getPrevBoolean
Description copied from interface:ElementSource
Get the previous value at the index as a Boolean. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevBoolean
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous boolean at the index, or null.
-
getPrevByte
default byte getPrevByte(long index)Description copied from interface:ElementSource
Get the previous value at the index as a byte. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevByte
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous boolean at the index, null values are represented by
QueryConstants.NULL_BYTE
-
getPrevChar
default char getPrevChar(long index)Description copied from interface:ElementSource
Get the previous value at the index as a char. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevChar
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous char at the index, null values are represented by
QueryConstants.NULL_CHAR
-
getPrevDouble
default double getPrevDouble(long index)Description copied from interface:ElementSource
Get the previous value at the index as a double. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevDouble
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous double at the index, null values are represented by
QueryConstants.NULL_DOUBLE
-
getPrevFloat
default float getPrevFloat(long index)Description copied from interface:ElementSource
Get the previous value at the index as a float. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevFloat
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous float at the index, null values are represented by
QueryConstants.NULL_FLOAT
-
getPrevInt
default int getPrevInt(long index)Description copied from interface:ElementSource
Get the previous value at the index as an int. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevInt
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous int at the index, null values are represented by
QueryConstants.NULL_INT
-
getPrevLong
default long getPrevLong(long index)Description copied from interface:ElementSource
Get the previous value at the index as a long. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevLong
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous long at the index, null values are represented by
QueryConstants.NULL_LONG
-
getPrevShort
default short getPrevShort(long index)Description copied from interface:ElementSource
Get the previous value at the index as a short. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevShort
in interfaceElementSource<DATA_TYPE>
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous short at the index, null values are represented by
QueryConstants.NULL_SHORT
-