Class Decimal28SparseVector.Mutator

java.lang.Object
org.apache.drill.exec.vector.BaseValueVector.BaseMutator
org.apache.drill.exec.vector.Decimal28SparseVector.Mutator
All Implemented Interfaces:
ValueVector.Mutator
Enclosing class:
Decimal28SparseVector

public final class Decimal28SparseVector.Mutator extends BaseValueVector.BaseMutator
Decimal28Sparse.Mutator implements a mutable vector of fixed width values. Elements in the vector are accessed by position from the logical start of the vector. Values should be pushed onto the vector sequentially, but may be randomly accessed. NB: this class is automatically generated from ValueVectorTypes.tdd using FreeMarker.
  • Method Details

    • set

      public void set(int index, DrillBuf value)
      Set the element at the given index to the given value. Note that widths smaller than 32 bits are handled by the DrillBuf interface.
      Parameters:
      index - position of the bit to set
      value - value to set
    • setSafe

      public void setSafe(int index, DrillBuf value)
    • setSafe

      public void setSafe(int index, int start, DrillBuf buffer)
    • set

      public void set(int index, Decimal28SparseHolder holder)
    • setSafe

      public void setSafe(int index, Decimal28SparseHolder holder)
    • setSafe

      public void setSafe(int index, NullableDecimal28SparseHolder holder)
    • set

      public void set(int index, BigDecimal value)
    • setSafe

      public void setSafe(int index, BigDecimal value)
    • set

      public void set(int index, int start, DrillBuf buffer)
    • generateTestData

      public void generateTestData(int count)
      Specified by:
      generateTestData in interface ValueVector.Mutator
      Overrides:
      generateTestData in class BaseValueVector.BaseMutator
    • setValueCount

      public void setValueCount(int valueCount)
      Description copied from interface: ValueVector.Mutator
      Sets the number of values that is stored in this vector to the given value count. WARNING! Once the valueCount is set, the vector should be considered immutable.
      Parameters:
      valueCount - value count to set.