Interface ColumnRegionByte<ATTR extends Attributes.Any>
- All Superinterfaces:
ChunkSource<ATTR>
,ColumnRegion<ATTR>
,FillContextMaker
,GetContextMaker
,Page<ATTR>
,PagingChunkSource<ATTR>
,Releasable
- All Known Implementing Classes:
BufferedColumnRegionByte
,ColumnRegionByte.Null
,ColumnRegionByte.StaticPageStore
,ParquetColumnRegionByte
public interface ColumnRegionByte<ATTR extends Attributes.Any> extends ColumnRegion<ATTR>
Column region interface for regions that support fetching primitive bytes.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ColumnRegionByte.Null<ATTR extends Attributes.Any>
static class
ColumnRegionByte.StaticPageStore<ATTR extends Attributes.Any>
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.page.Page
Page.WithDefaults<ATTR extends Attributes.Any>, Page.WithDefaultsForRepeatingValues<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
-
Method Summary
Modifier and Type Method Description static <ATTR extends Attributes.Any>
ColumnRegionByte.Null<ATTR>createNull()
byte
getByte(long elementIndex)
Get a single byte from this region.default byte
getByte(ChunkSource.FillContext context, long elementIndex)
Get a single byte from this region.byte[]
getBytes(long firstElementIndex, byte[] destination, int destinationOffset, int length)
Get a range of bytes from this region.default Class<?>
getNativeType()
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
fillChunk, getChunk, getChunk, getChunkType
Methods inherited from interface com.illumon.iris.db.v2.sources.regioned.ColumnRegion
firstRowOffset, mask
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.FillContextMaker
makeFillContext, makeFillContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.GetContextMaker
makeGetContext, makeGetContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.page.Page
advanceToNextPage, advanceToNextPage, advanceToNextPageAndGetPositionDistance, firstRow, getRowOffset, lastRow, length
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.page.PagingChunkSource
fillChunkAppend, maxRow
-
Method Details
-
getByte
byte getByte(long elementIndex)Get a single byte from this region.- Parameters:
elementIndex
- Element (byte) index in the table's address space- Returns:
- The byte value at the specified element (byte) index
-
getByte
Get a single byte from this region.- Parameters:
context
- AColumnRegionFillContext
to enable resource caching where suitable, with current region index pointing to this regionelementIndex
- Element (byte) index in the table's address space- Returns:
- The byte value at the specified element (byte) index
-
getBytes
byte[] getBytes(long firstElementIndex, @NotNull byte[] destination, int destinationOffset, int length)Get a range of bytes from this region. Implementations are not required to verify that the range specified is meaningful.- Parameters:
firstElementIndex
- First element (byte) index in the table's address spacedestination
- Array to store resultsdestinationOffset
- Offset intodestination
to begin storing atlength
- Number of bytes to get- Returns:
destination
, to enable method chaining
-
getNativeType
- Specified by:
getNativeType
in interfaceChunkSource<ATTR extends Attributes.Any>
-
createNull
-