Package org.apache.drill.exec.vector
Class UInt4Vector.Accessor
java.lang.Object
org.apache.drill.exec.vector.BaseValueVector.BaseAccessor
org.apache.drill.exec.vector.UInt4Vector.Accessor
- All Implemented Interfaces:
ValueVector.Accessor
- Enclosing class:
UInt4Vector
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintget(int index) voidget(int index, NullableUInt4Holder holder) voidget(int index, UInt4Holder holder) getObject(int index) Get the Java Object representation of the element at the specified position.intgetPrimitiveObject(int index) longgetTwoAsLong(int index) intReturns the number of values that is stored in this vector.booleanisNull(int index) Returns true if the value at the given index is null, false otherwise.
-
Constructor Details
-
Accessor
public Accessor()
-
-
Method Details
-
getValueCount
public int getValueCount()Description copied from interface:ValueVector.AccessorReturns the number of values that is stored in this vector. -
isNull
public boolean isNull(int index) Description copied from interface:ValueVector.AccessorReturns true if the value at the given index is null, false otherwise.- Specified by:
isNullin interfaceValueVector.Accessor- Overrides:
isNullin classBaseValueVector.BaseAccessor
-
get
public int get(int index) -
getTwoAsLong
public long getTwoAsLong(int index) -
getObject
Description copied from interface:ValueVector.AccessorGet the Java Object representation of the element at the specified position. Useful for testing.- Parameters:
index- Index of the value to get
-
getPrimitiveObject
public int getPrimitiveObject(int index) -
get
-
get
-