Class UntypedNullVector.Accessor

java.lang.Object
org.apache.drill.exec.vector.BaseValueVector.BaseAccessor
org.apache.drill.exec.vector.UntypedNullVector.Accessor
All Implemented Interfaces:
ValueVector.Accessor
Enclosing class:
UntypedNullVector

public final class UntypedNullVector.Accessor extends BaseValueVector.BaseAccessor
  • Constructor Details

    • Accessor

      public Accessor()
  • Method Details

    • getValueCount

      public int getValueCount()
      Description copied from interface: ValueVector.Accessor
      Returns the number of values that is stored in this vector.
    • isNull

      public boolean isNull(int index)
      Description copied from interface: ValueVector.Accessor
      Returns true if the value at the given index is null, false otherwise.
      Specified by:
      isNull in interface ValueVector.Accessor
      Overrides:
      isNull in class BaseValueVector.BaseAccessor
    • isSet

      public int isSet(int index)
    • getObject

      public Object getObject(int index)
      Description copied from interface: ValueVector.Accessor
      Get the Java Object representation of the element at the specified position. Useful for testing.
      Parameters:
      index - Index of the value to get
    • get

      public void get(int index, UntypedNullHolder holder)