Interface ColumnRegionDouble<ATTR extends Any>

All Superinterfaces:
ChunkSource<ATTR>, ColumnRegion<ATTR>, DefaultChunkSource<ATTR>, FillContextMaker, GetContextMaker, Page<ATTR>, PagingChunkSource<ATTR>, Releasable
All Known Implementing Classes:
AppendOnlyFixedSizePageRegionDouble, ColumnRegionDouble.Constant, ColumnRegionDouble.Null, ColumnRegionDouble.StaticPageStore, DeferredColumnRegionDouble, ParquetColumnRegionDouble

public interface ColumnRegionDouble<ATTR extends Any> extends ColumnRegion<ATTR>
Column region interface for regions that support fetching primitive doubles.
  • Method Details

    • getDouble

      double getDouble(long elementIndex)
      Get a single double from this region.
      Parameters:
      elementIndex - Element row key in the table's address space
      Returns:
      The double value at the specified element row key
    • getDouble

      default double getDouble(@NotNull @NotNull ChunkSource.FillContext context, long elementIndex)
      Get a single double from this region.
      Parameters:
      context - A PagingContextHolder to enable resource caching where suitable, with current region index pointing to this region
      elementIndex - Element row key in the table's address space
      Returns:
      The double value at the specified element row key
    • getChunkType

      @FinalDefault default ChunkType getChunkType()
      Description copied from interface: ChunkSource
      Get the most suitable ChunkType for use with this ChunkSource.
      Specified by:
      getChunkType in interface ChunkSource<ATTR extends Any>
      Returns:
      The ChunkType
    • createNull

      static <ATTR extends Any> ColumnRegionDouble<ATTR> createNull(long pageMask)