Interface ColumnSourceGetDefaults.ForObject<DATA_TYPE>

All Superinterfaces:
ChunkSource<Attributes.Values>, ChunkSource.WithPrev<Attributes.Values>, ColumnSource<DATA_TYPE>, DefaultChunkSource<Attributes.Values>, DefaultChunkSource.WithPrev<Attributes.Values>, ElementSource<DATA_TYPE>, FillContextMaker, GetContextMaker, Releasable, TupleExporter<DATA_TYPE>, TupleSource<DATA_TYPE>
All Known Subinterfaces:
AggregateColumnSource<DB_ARRAY_TYPE,COMPONENT_TYPE>, ContextualizedObjectColumnSource<DATA_TYPE>, ImmutableColumnSourceGetDefaults.ForObject<DATA_TYPE>, MutableColumnSourceGetDefaults.ForObject<DATA_TYPE>, SizedContextualizedObjectColumnSource<DATA_TYPE>
All Known Implementing Classes:
AbstractColumnSource.DefaultedImmutable, AbstractColumnSource.DefaultedMutable, BoxedColumnSource, BoxedColumnSource.OfDateTime, BoxedLongAsTimeSource, ByteAggregateColumnSource, ByteSsmBackedSource, CharAggregateColumnSource, CharSsmBackedSource, DbDateTimeSsmSourceWrapper, DoubleAggregateColumnSource, DoubleSsmBackedSource, EmptyToNullStringRegionedColumnSource, FloatAggregateColumnSource, FloatSsmBackedSource, ImmutableDateTimeArraySource, ImmutableInstantArraySource, ImmutableObjectArraySource, IntAggregateColumnSource, IntSsmBackedSource, ListAggregateColumnSource, LocalDateWrapperSource, LocalTimeWrapperSource, LongAggregateColumnSource, LongAsDateTimeColumnSource, LongAsInstantColumnSource, LongAsLocalDateColumnSource, LongAsLocalTimeColumnSource, LongAsZonedDateTimeColumnSource, LongSsmBackedSource, ObjectAggregateColumnSource, ObjectArraySource, ObjectSingleValueSource, ObjectSparseArraySource, ObjectSsmBackedSource, RegionedColumnSourceObject, RegionedColumnSourceObject.AsValues, RegionedColumnSourceObjectWithDictionary, RegionedColumnSourcePartitioning, ShortAggregateColumnSource, ShortSsmBackedSource, SingleValueObjectColumnSource, SmartKeySource, UngroupedArrayColumnSource, UngroupedBoxedByteArrayColumnSource, UngroupedBoxedByteDbArrayColumnSource, UngroupedBoxedCharArrayColumnSource, UngroupedBoxedCharDbArrayColumnSource, UngroupedBoxedDoubleArrayColumnSource, UngroupedBoxedDoubleDbArrayColumnSource, UngroupedBoxedFloatArrayColumnSource, UngroupedBoxedFloatDbArrayColumnSource, UngroupedBoxedIntArrayColumnSource, UngroupedBoxedIntDbArrayColumnSource, UngroupedBoxedLongArrayColumnSource, UngroupedBoxedLongDbArrayColumnSource, UngroupedBoxedShortArrayColumnSource, UngroupedBoxedShortDbArrayColumnSource, UngroupedDbArrayColumnSource, ZonedDateTimeArraySource, ZonedDateTimeSparseArraySource
Enclosing class:
ColumnSourceGetDefaults

public static interface ColumnSourceGetDefaults.ForObject<DATA_TYPE> extends ColumnSource<DATA_TYPE>
Default interface for Object ColumnSource implementations.
  • Method Details

    • 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<DATA_TYPE>
      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<DATA_TYPE>
      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<DATA_TYPE>
      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
    • getDouble

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