Class TimeStampSecVector

All Implemented Interfaces:
Closeable, AutoCloseable, Iterable<ValueVector>, ElementAddressableVector, FieldVector, FixedWidthVector, ValueVector, VectorDefinitionSetter

public final class TimeStampSecVector extends TimeStampVector
TimeStampSecVector implements a fixed width vector (8 bytes) of timestamp (seconds resolution) values which could be null. A validity buffer (bit vector) is maintained to track which elements in the vector are null.
  • Constructor Details

    • TimeStampSecVector

      public TimeStampSecVector(String name, BufferAllocator allocator)
      Instantiate a TimeStampSecVector. This doesn't allocate any memory for the data in vector.
      Parameters:
      name - name of the vector
      allocator - allocator for memory management.
    • TimeStampSecVector

      public TimeStampSecVector(String name, FieldType fieldType, BufferAllocator allocator)
      Instantiate a TimeStampSecVector. This doesn't allocate any memory for the data in vector.
      Parameters:
      name - name of the vector
      fieldType - type of Field materialized by this vector
      allocator - allocator for memory management.
    • TimeStampSecVector

      public TimeStampSecVector(Field field, BufferAllocator allocator)
      Instantiate a TimeStampSecVector. This doesn't allocate any memory for the data in vector.
      Parameters:
      field - Field materialized by this vector
      allocator - allocator for memory management.
  • Method Details