public class SmallIntVector extends BaseFixedWidthVector
| Modifier and Type | Field and Description |
|---|---|
static byte |
TYPE_WIDTH |
field, validityAllocationSizeInBytes, validityBuffer, valueAllocationSizeInBytes, valueBuffer, valueCountallocator, INITIAL_VALUE_ALLOCATION, MAX_ALLOCATION_SIZE, MAX_ALLOCATION_SIZE_PROPERTY, name| Constructor and Description |
|---|
SmallIntVector(String name,
BufferAllocator allocator)
Instantiate a SmallIntVector.
|
SmallIntVector(String name,
FieldType fieldType,
BufferAllocator allocator)
Instantiate a SmallIntVector.
|
| Modifier and Type | Method and Description |
|---|---|
void |
copyFrom(int fromIndex,
int thisIndex,
SmallIntVector from)
Copy a cell value from a particular index in source vector to a particular
position in this vector
|
void |
copyFromSafe(int fromIndex,
int thisIndex,
SmallIntVector from)
Same as
copyFrom(int, int, SmallIntVector) except that
it handles the case when the capacity of the vector needs to be expanded
before copy. |
static short |
get(ArrowBuf buffer,
int index)
Given a data buffer, get the value stored at a particular position
in the vector.
|
short |
get(int index)
Get the element at the given index from the vector.
|
void |
get(int index,
NullableSmallIntHolder holder)
Get the element at the given index from the vector and
sets the state in holder.
|
Types.MinorType |
getMinorType()
Get minor type for this vector.
|
Short |
getObject(int index)
Same as
get(int). |
FieldReader |
getReader()
Get a reader that supports reading values from this vector
|
TransferPair |
getTransferPair(String ref,
BufferAllocator allocator)
Construct a TransferPair comprising of this and and a target vector of
the same type.
|
TransferPair |
makeTransferPair(ValueVector to)
Construct a TransferPair with a desired target vector of the same type.
|
void |
set(int index,
int value)
Set the element at the given index to the given value.
|
void |
set(int index,
int isSet,
short value)
Store the given value at a particular position in the vector.
|
void |
set(int index,
NullableSmallIntHolder holder)
Set the element at the given index to the value set in data holder.
|
void |
set(int index,
short value)
Set the element at the given index to the given value.
|
void |
set(int index,
SmallIntHolder holder)
Set the element at the given index to the value set in data holder.
|
void |
setNull(int index)
Set the element at the given index to null.
|
void |
setSafe(int index,
int value)
Same as
set(int, int) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity(). |
void |
setSafe(int index,
int isSet,
short value)
Same as
set(int, int, short) except that it handles the case
when index is greater than or equal to current value capacity of the
vector. |
void |
setSafe(int index,
NullableSmallIntHolder holder)
Same as
set(int, NullableSmallIntHolder) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity(). |
void |
setSafe(int index,
short value)
Same as
set(int, short) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity(). |
void |
setSafe(int index,
SmallIntHolder holder)
Same as
set(int, SmallIntHolder) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity(). |
allocateNew, allocateNew, allocateNewSafe, clear, close, decrementAllocationMonitor, getBuffers, getBufferSize, getBufferSizeFor, getChildrenFromFields, getDataBuffer, getDataBufferAddress, getField, getFieldBuffers, getFieldInnerVectors, getNullCount, getOffsetBuffer, getOffsetBufferAddress, getTransferPair, getTransferPair, getValidityBuffer, getValidityBufferAddress, getValueCapacity, getValueCount, handleSafe, incrementAllocationMonitor, initializeChildrenFromFields, isNull, isSafe, isSet, loadFieldBuffers, reAlloc, reset, set, set, setIndexDefined, setInitialCapacity, setSafe, setSafe, setValueCount, splitAndTransferTo, transferTo, zeroVectorcheckBufRefs, compareTypes, getAllocator, getValidityBufferSizeFromCount, iterator, releaseBuffer, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetAllocatorpublic static final byte TYPE_WIDTH
public SmallIntVector(String name, BufferAllocator allocator)
name - name of the vectorallocator - allocator for memory management.public SmallIntVector(String name, FieldType fieldType, BufferAllocator allocator)
name - name of the vectorfieldType - type of Field materialized by this vectorallocator - allocator for memory management.public FieldReader getReader()
public Types.MinorType getMinorType()
Types.MinorTypepublic short get(int index)
throws IllegalStateException
index - position of elementIllegalStateExceptionpublic void get(int index,
NullableSmallIntHolder holder)
index - position of elementpublic Short getObject(int index)
get(int).index - position of elementpublic void copyFrom(int fromIndex,
int thisIndex,
SmallIntVector from)
fromIndex - position to copy from in source vectorthisIndex - position to copy to in this vectorfrom - source vectorpublic void copyFromSafe(int fromIndex,
int thisIndex,
SmallIntVector from)
copyFrom(int, int, SmallIntVector) except that
it handles the case when the capacity of the vector needs to be expanded
before copy.fromIndex - position to copy from in source vectorthisIndex - position to copy to in this vectorfrom - source vectorpublic void set(int index,
int value)
index - position of elementvalue - value of elementpublic void set(int index,
short value)
index - position of elementvalue - value of elementpublic void set(int index,
NullableSmallIntHolder holder)
throws IllegalArgumentException
index - position of elementholder - nullable data holder for value of elementIllegalArgumentExceptionpublic void set(int index,
SmallIntHolder holder)
index - position of elementholder - data holder for value of elementpublic void setSafe(int index,
int value)
set(int, int) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity().index - position of elementvalue - value of elementpublic void setSafe(int index,
short value)
set(int, short) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity().index - position of elementvalue - value of elementpublic void setSafe(int index,
NullableSmallIntHolder holder)
throws IllegalArgumentException
set(int, NullableSmallIntHolder) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity().index - position of elementholder - nullable data holder for value of elementIllegalArgumentExceptionpublic void setSafe(int index,
SmallIntHolder holder)
set(int, SmallIntHolder) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity().index - position of elementholder - data holder for value of elementpublic void setNull(int index)
index - position of elementpublic void set(int index,
int isSet,
short value)
index - position of the new valueisSet - 0 for NULL value, 1 otherwisevalue - element valuepublic void setSafe(int index,
int isSet,
short value)
set(int, int, short) except that it handles the case
when index is greater than or equal to current value capacity of the
vector.index - position of the new valueisSet - 0 for NULL value, 1 otherwisevalue - element valuepublic static short get(ArrowBuf buffer, int index)
buffer - data bufferindex - position of the element.public TransferPair getTransferPair(String ref, BufferAllocator allocator)
getTransferPair in interface ValueVectorgetTransferPair in class BaseFixedWidthVectorref - name of the target vectorallocator - allocator for the target vectorTransferPairpublic TransferPair makeTransferPair(ValueVector to)
to - target vectorTransferPairCopyright © 2017 The Apache Software Foundation. All rights reserved.