public abstract class TimeStampVector extends BaseFixedWidthVector
Modifier and Type | Class and Description |
---|---|
class |
TimeStampVector.TransferImpl
|
Modifier and Type | Field and Description |
---|---|
static byte |
TYPE_WIDTH |
actualValueCapacity, field, lastValueCapacity, validityBuffer, valueBuffer, valueCount
allocator, fieldReader, INITIAL_VALUE_ALLOCATION, MAX_ALLOCATION_SIZE, MAX_ALLOCATION_SIZE_PROPERTY
Constructor and Description |
---|
TimeStampVector(Field field,
BufferAllocator allocator)
Instantiate a TimeStampVector.
|
TimeStampVector(String name,
FieldType fieldType,
BufferAllocator allocator)
Instantiate a TimeStampVector.
|
Modifier and Type | Method and Description |
---|---|
static long |
get(ArrowBuf buffer,
int index)
Given a data buffer, get the value stored at a particular position
in the vector.
|
long |
get(int index)
Get the element at the given index from the vector.
|
void |
set(int index,
int isSet,
long value)
Store the given value at a particular position in the vector.
|
void |
set(int index,
long value)
Set the element at the given index to the given value.
|
void |
setSafe(int index,
int isSet,
long value)
Same as
set(int, int, long) except that it handles the case
when index is greater than or equal to current value capacity of the
vector. |
void |
setSafe(int index,
long value)
Same as
set(int, long) except that it handles the
case when index is greater than or equal to existing
value capacity BaseFixedWidthVector.getValueCapacity() . |
protected void |
setValue(int index,
long value) |
accept, allocateNew, allocateNew, allocateNewSafe, clear, close, copyFrom, copyFromSafe, decrementAllocationMonitor, getBuffers, getBufferSize, getBufferSizeFor, getChildrenFromFields, getDataBuffer, getDataBufferAddress, getDataPointer, getDataPointer, getField, getFieldBuffers, getFieldInnerVectors, getName, getNullCount, getOffsetBuffer, getOffsetBufferAddress, getTransferPair, getTransferPair, getTransferPair, getTransferPair, getTypeWidth, getValidityBuffer, getValidityBufferAddress, getValidityBufferValueCapacity, getValueBufferValueCapacity, getValueCapacity, getValueCount, handleSafe, hashCode, hashCode, incrementAllocationMonitor, initializeChildrenFromFields, isNull, isSafe, isSet, loadFieldBuffers, reAlloc, refreshValueCapacity, reset, set, set, setIndexDefined, setInitialCapacity, setNull, setSafe, setSafe, setValueCount, splitAndTransferTo, transferTo, zeroVector
checkBufRefs, getAllocator, getReader, getReaderImpl, getValidityBufferSizeFromCount, iterator, releaseBuffer, toString, transferBuffer
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getAllocator, getMinorType, getObject, getReader, makeTransferPair
forEach, iterator, spliterator
public static final byte TYPE_WIDTH
public TimeStampVector(String name, FieldType fieldType, BufferAllocator allocator)
name
- name of the vectorfieldType
- type of Field materialized by this vectorallocator
- allocator for memory management.public TimeStampVector(Field field, BufferAllocator allocator)
field
- field materialized by this vectorallocator
- allocator for memory management.public long get(int index) throws IllegalStateException
index
- position of elementIllegalStateException
protected void setValue(int index, long value)
public void set(int index, long value)
index
- position of elementvalue
- value of elementpublic void setSafe(int index, long value)
set(int, long)
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 set(int index, int isSet, long value)
index
- position of the new valueisSet
- 0 for NULL value, 1 otherwisevalue
- element valuepublic void setSafe(int index, int isSet, long value)
set(int, int, long)
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 long get(ArrowBuf buffer, int index)
This method should not be used externally.
buffer
- data bufferindex
- position of the element.Copyright © 2023 The Apache Software Foundation. All rights reserved.