Interface MutableColumnSourceGetDefaults.ForLongAsInstant

All Superinterfaces:
ChunkSource<Values>, ChunkSource.WithPrev<Values>, ColumnSource<Instant>, ColumnSourceGetDefaults.ForLongAsInstant, ColumnSourceGetDefaults.LongBacked<Instant>, ElementSource<Instant>, FillContextMaker, GetContextMaker, MutableColumnSource<Instant>, MutableColumnSourceGetDefaults.LongBacked<Instant>, Releasable, TupleExporter<Instant>, TupleSource<Instant>
All Known Implementing Classes:
InstantArraySource, InstantSparseArraySource
Enclosing class:
MutableColumnSourceGetDefaults

public static interface MutableColumnSourceGetDefaults.ForLongAsInstant extends ColumnSourceGetDefaults.ForLongAsInstant, MutableColumnSourceGetDefaults.LongBacked<Instant>
Default interface for mutable Instant ColumnSource implementations.
  • Method Details

    • getPrev

      @Nullable default @Nullable Instant getPrev(long rowKey)
      Description copied from interface: ElementSource
      Get the previous value at the rowKey. Previous values are used during an UG update cycle to process changes in data. During normal operation previous values will be identical to current values. RowKeys that were not present are undefined.
      Specified by:
      getPrev in interface ElementSource<Instant>
      Parameters:
      rowKey - the location in key space to get the value from.
      Returns:
      the previous value at the rowKey, potentially null.