Interface ColumnSourceGetDefaults.ForDouble

All Superinterfaces:
ChunkSource<Attributes.Values>, ChunkSource.WithPrev<Attributes.Values>, ColumnSource<Double>, DefaultChunkSource<Attributes.Values>, DefaultChunkSource.WithPrev<Attributes.Values>, ElementSource<Double>, FillContextMaker, GetContextMaker, Releasable, TupleExporter<Double>, TupleSource<Double>
All Known Subinterfaces:
ImmutableColumnSourceGetDefaults.ForDouble, MutableColumnSourceGetDefaults.ForDouble
All Known Implementing Classes:
DoubleArraySource, DoubleNullToZeroColumnSource, DoubleSingleValueSource, DoubleSparseArraySource, ImmutableDoubleArraySource, UngroupedDoubleArrayColumnSource, UngroupedDoubleDbArrayColumnSource
Enclosing class:
ColumnSourceGetDefaults

public static interface ColumnSourceGetDefaults.ForDouble extends ColumnSource<Double>
Default interface for double ColumnSource implementations.
  • Method Details

    • get

      default Double get(long index)
      Description copied from interface: ElementSource
      Get the value from the source. This may return boxed values for basic types.
      Specified by:
      get in interface ElementSource<Double>
      Parameters:
      index - the location in index space to get the value from.
      Returns:
      the value at the index, potentially null.
    • getBoolean

      default Boolean getBoolean(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a Boolean.
      Specified by:
      getBoolean in interface ElementSource<Double>
      Parameters:
      index - the location in index space to get the value from.
      Returns:
      the boolean at the index, potentially null.
    • getByte

      default byte getByte(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a byte.
      Specified by:
      getByte in interface ElementSource<Double>
      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
    • getChar

      default char getChar(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a char.
      Specified by:
      getChar in interface ElementSource<Double>
      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
    • getFloat

      default float getFloat(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a float.
      Specified by:
      getFloat in interface ElementSource<Double>
      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
    • getInt

      default int getInt(long index)
      Description copied from interface: ElementSource
      Get the value at the index as an int.
      Specified by:
      getInt in interface ElementSource<Double>
      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
    • getLong

      default long getLong(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a long.
      Specified by:
      getLong in interface ElementSource<Double>
      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
    • getShort

      default short getShort(long index)
      Description copied from interface: ElementSource
      Get the value at the index as a short.
      Specified by:
      getShort in interface ElementSource<Double>
      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