Class TableLogger.NoPrevColumnSource<T>
java.lang.Object
com.illumon.iris.db.v2.sources.AbstractColumnSource<T>
com.illumon.iris.db.tables.dataimport.TableLogger.NoPrevColumnSource<T>
- Type Parameters:
- T-
- All Implemented Interfaces:
- ChunkSource<Attributes.Values>,- ChunkSource.WithPrev<Attributes.Values>,- DefaultChunkSource<Attributes.Values>,- DefaultChunkSource.WithPrev<Attributes.Values>,- FillContextMaker,- GetContextMaker,- ColumnSource<T>,- ElementSource<T>,- Releasable,- TupleExporter<T>,- TupleSource<T>,- Serializable
- Enclosing interface:
- TableLogger
public static class TableLogger.NoPrevColumnSource<T> extends AbstractColumnSource<T>
A ColumnSource that always returns null-equivalent for previous values. This is used to wrap the true column
 source when we don't want to incur the overhead of extracting previous values.
- See Also:
- Serialized Form
- 
Nested Class SummaryNested classes/interfaces inherited from class com.illumon.iris.db.v2.sources.AbstractColumnSourceAbstractColumnSource.DefaultedImmutable<DATA_TYPE>, AbstractColumnSource.DefaultedMutable<DATA_TYPE>, AbstractColumnSource.IsSerializableNested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSourceChunkSource.FillContext, ChunkSource.GetContext, ChunkSource.WithPrev<ATTR extends Attributes.Any>Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSourceDefaultChunkSource.SupportsContiguousGet<ATTR extends Attributes.Any>, DefaultChunkSource.WithPrev<ATTR extends Attributes.Any>
- 
Field SummaryFields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSourceDEFAULT_FILL_INSTANCE, ZERO_LENGTH_CHUNK_SOURCE_ARRAYFields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource.WithPrevZERO_LENGTH_CHUNK_SOURCE_WITH_PREV_ARRAYFields inherited from interface com.illumon.iris.db.v2.sources.ColumnSourceZERO_LENGTH_COLUMN_SOURCE_ARRAY
- 
Constructor SummaryConstructors Constructor Description NoPrevColumnSource(ColumnSource<T> columnSource)
- 
Method SummaryModifier and Type Method Description <ALTERNATE_DATA_TYPE>
 booleanallowsReinterpret(Class<ALTERNATE_DATA_TYPE> alternateDataType)Test if a reinterpret call will succeed.protected <ALTERNATE_DATA_TYPE>
 ColumnSource<ALTERNATE_DATA_TYPE>doReinterpret(Class<ALTERNATE_DATA_TYPE> alternateDataType)Supply allowed reinterpret results.Tget(long index)Get the value from the source.BooleangetBoolean(long index)Get the value at the index as a Boolean.bytegetByte(long index)Get the value at the index as a byte.chargetChar(long index)Get the value at the index as a char.doublegetDouble(long index)Get the value at the index as a double.floatgetFloat(long index)Get the value at the index as a float.intgetInt(long index)Get the value at the index as an int.longgetLong(long index)Get the value at the index as a long.TgetPrev(long index)Get the previous value at the index.BooleangetPrevBoolean(long index)Get the previous value at the index as a Boolean.bytegetPrevByte(long index)Get the previous value at the index as a byte.chargetPrevChar(long index)Get the previous value at the index as a char.doublegetPrevDouble(long index)Get the previous value at the index as a double.floatgetPrevFloat(long index)Get the previous value at the index as a float.intgetPrevInt(long index)Get the previous value at the index as an int.longgetPrevLong(long index)Get the previous value at the index as a long.shortgetPrevShort(long index)Get the previous value at the index as a short.shortgetShort(long index)Get the value at the index as a short.booleanisImmutable()Determine if this column source is immutable, meaning that the values at a given index key never change.voidstartTrackingPrevValues()ColumnSource implementations that track previous values have the option to not actually start tracking previous values until this method is called.Methods inherited from class com.illumon.iris.db.v2.sources.AbstractColumnSourcedefaultFillChunk, fillChunk, fillPrevChunk, getComponentType, getGroupingBuilder, getGroupingProvider, getNativeType, getType, hasGrouping, isSerializable, match, reinterpret, setGroupingProviderMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.illumon.iris.db.v2.sources.ColumnSourcecast, createPreviousTuple, createTuple, createTupleFromValues, exportElement, exportElement, exportToExternalKey, getColumnSources, getPrevSource, releaseCachedResourcesMethods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSourcegetChunk, getChunk, getChunkByFilling, makeFillContext, makeGetContextMethods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource.WithPrevgetPrevChunk, getPrevChunk, getPrevChunkByFillingMethods inherited from interface com.illumon.iris.db.v2.sources.chunk.FillContextMakermakeFillContextMethods inherited from interface com.illumon.iris.db.v2.sources.chunk.GetContextMakermakeGetContextMethods inherited from interface com.illumon.iris.db.v2.tuples.TupleExporterexportElementReinterpretedMethods inherited from interface com.illumon.iris.db.v2.tuples.TupleSourcecreateTupleFromReinterpretedValues
- 
Constructor Details
- 
Method Details- 
startTrackingPrevValuespublic void startTrackingPrevValues()Description copied from interface:ColumnSourceColumnSource implementations that track previous values have the option to not actually start tracking previous values until this method is called. This is an option, not an obligation: some simple ColumnSource implementations (like TSingleValueSource for various T) always track previous values; other implementations (like PrevColumnSource) never do; some (like TArrayColumnSource) only start tracking once this method is called. An immutable column source can not have distinct prev values; therefore it is implemented as a no-op.
- 
getDescription copied from interface:ElementSourceGet the value from the source. This may return boxed values for basic types.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the value at the index, potentially null.
 
- 
getBooleanDescription copied from interface:ElementSourceGet the value at the index as a Boolean.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the boolean at the index, potentially null.
 
- 
getBytepublic byte getByte(long index)Description copied from interface:ElementSourceGet the value at the index as a byte.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the boolean at the index, null values are represented by QueryConstants.NULL_BYTE
 
- 
getCharpublic char getChar(long index)Description copied from interface:ElementSourceGet the value at the index as a char.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the char at the index, null values are represented by QueryConstants.NULL_CHAR
 
- 
getDoublepublic double getDouble(long index)Description copied from interface:ElementSourceGet the value at the index as a double.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the double at the index, null values are represented by QueryConstants.NULL_DOUBLE
 
- 
getFloatpublic float getFloat(long index)Description copied from interface:ElementSourceGet the value at the index as a float.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the float at the index, null values are represented by QueryConstants.NULL_FLOAT
 
- 
getIntpublic int getInt(long index)Description copied from interface:ElementSourceGet the value at the index as an int.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the int at the index, null values are represented by QueryConstants.NULL_INT
 
- 
getLongpublic long getLong(long index)Description copied from interface:ElementSourceGet the value at the index as a long.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the long at the index, null values are represented by QueryConstants.NULL_LONG
 
- 
getShortpublic short getShort(long index)Description copied from interface:ElementSourceGet the value at the index as a short.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the short at the index, null values are represented by QueryConstants.NULL_SHORT
 
- 
getPrevDescription copied from interface:ElementSourceGet the previous value at the index. Previous values are used during anLTMupdatecycle to process changes in data. Duringnormaloperation previous values will be identical tocurrentvalues.- Parameters:
- index- the location in index space to get the value from.
- Returns:
- the previous value at the index, or null.
 
- 
getPrevBooleanDescription copied from interface:ElementSourceGet the previous value at the index as a Boolean. SeeElementSource.getPrev(long)for more details.- Parameters:
- index- the location in index space to get the previous value from.
- Returns:
- the previous boolean at the index, or null.
 
- 
getPrevBytepublic byte getPrevByte(long index)Description copied from interface:ElementSourceGet the previous value at the index as a byte. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevCharpublic char getPrevChar(long index)Description copied from interface:ElementSourceGet the previous value at the index as a char. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevDoublepublic double getPrevDouble(long index)Description copied from interface:ElementSourceGet the previous value at the index as a double. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevFloatpublic float getPrevFloat(long index)Description copied from interface:ElementSourceGet the previous value at the index as a float. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevIntpublic int getPrevInt(long index)Description copied from interface:ElementSourceGet the previous value at the index as an int. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevLongpublic long getPrevLong(long index)Description copied from interface:ElementSourceGet the previous value at the index as a long. SeeElementSource.getPrev(long)for more details.- 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
 
- 
getPrevShortpublic short getPrevShort(long index)Description copied from interface:ElementSourceGet the previous value at the index as a short. SeeElementSource.getPrev(long)for more details.- 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
 
- 
isImmutablepublic boolean isImmutable()Description copied from interface:ColumnSourceDetermine if this column source is immutable, meaning that the values at a given index key never change.- Returns:
- true if the values at a given index of the column source never change, false otherwise
 
- 
allowsReinterpretpublic <ALTERNATE_DATA_TYPE> boolean allowsReinterpret(@NotNull Class<ALTERNATE_DATA_TYPE> alternateDataType)Description copied from interface:ColumnSourceTest if a reinterpret call will succeed.- Specified by:
- allowsReinterpretin interface- ColumnSource<T>
- Overrides:
- allowsReinterpretin class- AbstractColumnSource<T>
- Type Parameters:
- ALTERNATE_DATA_TYPE- the dataType to inquire about
- Parameters:
- alternateDataType- The alternative type to consider
- Returns:
- If a reinterpret on this column source with the supplied alternateDataType will succeed.
 
- 
doReinterpretprotected <ALTERNATE_DATA_TYPE> ColumnSource<ALTERNATE_DATA_TYPE> doReinterpret(@NotNull Class<ALTERNATE_DATA_TYPE> alternateDataType)Description copied from class:AbstractColumnSourceSupply allowed reinterpret results. The default implementation handles the most common case to avoid code duplication.- Overrides:
- doReinterpretin class- AbstractColumnSource<T>
- Type Parameters:
- ALTERNATE_DATA_TYPE- the dataType to reinterpret to
- Parameters:
- alternateDataType- The alternate data type
- Returns:
- The resulting ColumnSource
 
 
-