Package org.apache.arrow.vector.complex
Interface RepeatedFixedWidthVectorLike
public interface RepeatedFixedWidthVectorLike
A
ValueVector
mix-in that can be used in conjunction with RepeatedValueVector
subtypes.-
Method Summary
Modifier and TypeMethodDescriptionvoid
allocateNew
(int valueCount, int innerValueCount) Allocate a new memory space for this vector.
-
Method Details
-
allocateNew
void allocateNew(int valueCount, int innerValueCount) Allocate a new memory space for this vector. Must be called prior to using the ValueVector.- Parameters:
valueCount
- Number of separate repeating groupings.innerValueCount
- Number of supported values in the vector.
-