Class UngroupedCharArrayColumnSource
java.lang.Object
io.deephaven.engine.table.impl.AbstractColumnSource<T>
io.deephaven.engine.table.impl.sources.UngroupedColumnSource<Character>
io.deephaven.engine.table.impl.sources.UngroupedCharArrayColumnSource
- All Implemented Interfaces:
ChunkSource<Values>,ChunkSource.WithPrev<Values>,ColumnSource<Character>,ElementSource<Character>,FillContextMaker,GetContextMaker,ColumnSourceGetDefaults.ForChar,DefaultChunkSource<Values>,DefaultChunkSource.WithPrev<Values>,MutableColumnSource<Character>,MutableColumnSourceGetDefaults.ForChar,PushdownFilterMatcher,Releasable,TupleExporter<Character>,TupleSource<Character>
public class UngroupedCharArrayColumnSource
extends UngroupedColumnSource<Character>
implements MutableColumnSourceGetDefaults.ForChar
-
Nested Class Summary
Nested classes/interfaces inherited from class io.deephaven.engine.table.impl.AbstractColumnSource
AbstractColumnSource.DefaultedImmutable<DATA_TYPE>, AbstractColumnSource.DefaultedMutable<DATA_TYPE>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.impl.DefaultChunkSource
DefaultChunkSource.SupportsContiguousGet<ATTR extends Any>, DefaultChunkSource.WithPrev<ATTR extends Any>Nested classes/interfaces inherited from interface io.deephaven.engine.table.TupleExporter
TupleExporter.ExportElementFunction<TUPLE_TYPE> -
Field Summary
Fields inherited from class io.deephaven.engine.table.impl.sources.UngroupedColumnSource
baseFields inherited from class io.deephaven.engine.table.impl.AbstractColumnSource
componentType, type, updateGraph, USE_RANGES_AVERAGE_RUN_LENGTHFields 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 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionchargetChar(long rowKey) Get the value at the rowKey as a char.Class<?>chargetPrevChar(long rowKey) Get the previous value at the rowKey as a char.booleanDetermine if this column source is immutable, meaning that the values at a given row key never change.booleanMost column sources will return the same value for a given row without respect to the order that the rows are read.Methods inherited from class io.deephaven.engine.table.impl.sources.UngroupedColumnSource
getColumnSource, getPrevBase, initializeBase, setBase, startTrackingPrevValuesMethods inherited from class io.deephaven.engine.table.impl.AbstractColumnSource
allowsReinterpret, defaultFillChunk, defaultFillPrevChunk, doReinterpret, estimatePushdownFilterCost, fillChunk, fillPrevChunk, getPrevSource, getType, makePushdownFilterContext, match, pushdownFilter, pushdownManager, reinterpretMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.engine.table.ChunkSource
fillChunkMethods inherited from interface io.deephaven.engine.table.ChunkSource.WithPrev
fillPrevChunkMethods inherited from interface io.deephaven.engine.table.ColumnSource
allowsReinterpret, cast, cast, cast, cast, createPreviousTuple, createTuple, createTupleFromValues, exportAllTo, exportElement, exportElement, getChunkType, getPrevSource, getType, match, reinterpret, releaseCachedResources, startTrackingPrevValues, tupleLengthMethods inherited from interface io.deephaven.engine.table.impl.ColumnSourceGetDefaults.ForChar
get, getBoolean, getByte, getDouble, getFloat, getInt, getLong, getShortMethods inherited from interface io.deephaven.engine.table.impl.DefaultChunkSource
getChunk, getChunk, getChunkByFilling, makeFillContext, makeGetContextMethods inherited from interface io.deephaven.engine.table.impl.DefaultChunkSource.WithPrev
getPrevChunk, getPrevChunk, getPrevChunkByFillingMethods inherited from interface io.deephaven.engine.table.FillContextMaker
makeFillContextMethods inherited from interface io.deephaven.engine.table.GetContextMaker
makeGetContextMethods inherited from interface io.deephaven.engine.table.impl.MutableColumnSourceGetDefaults.ForChar
getPrev, getPrevBoolean, getPrevByte, getPrevDouble, getPrevFloat, getPrevInt, getPrevLong, getPrevShortMethods inherited from interface io.deephaven.engine.table.TupleExporter
exportAllReinterpretedTo, exportAllReinterpretedTo, exportAllTo, exportElementReinterpretedMethods inherited from interface io.deephaven.engine.table.TupleSource
createTupleFromReinterpretedValues
-
Constructor Details
-
UngroupedCharArrayColumnSource
-
-
Method Details
-
getComponentType
- Specified by:
getComponentTypein interfaceColumnSource<Character>- Overrides:
getComponentTypein classAbstractColumnSource<Character>
-
getChar
public 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<Character>- 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
-
getPrevChar
public 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<Character>- 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
-
isImmutable
public boolean isImmutable()Description copied from interface:ColumnSourceDetermine if this column source is immutable, meaning that the values at a given row key never change.- Specified by:
isImmutablein interfaceColumnSource<Character>- Specified by:
isImmutablein interfaceMutableColumnSource<Character>- Returns:
- true if the values at a given row key of the column source never change, false otherwise
-
isStateless
public boolean isStateless()Description copied from interface:ColumnSourceMost column sources will return the same value for a given row without respect to the order that the rows are read. Those columns sources are considered "stateless" and should return true. Some column sources, however may be dependent on evaluation order. For example, a formula that updates a Map must be evaluated from the first row to the last row. A column source that has the potential to depend on the order of evaluation must return false.- Specified by:
isStatelessin interfaceColumnSource<Character>- Returns:
- true if this is a stateless column source
-