public abstract class TimeStampVector extends BaseFixedWidthVector
| 修飾子とタイプ | クラスと説明 |
|---|---|
class |
TimeStampVector.TransferImpl
*
vector transfer *
*
|
| 修飾子とタイプ | フィールドと説明 |
|---|---|
protected static byte |
TYPE_WIDTH |
field, validityAllocationSizeInBytes, validityBuffer, valueAllocationSizeInBytes, valueBuffer, valueCountallocator, INITIAL_VALUE_ALLOCATION, MAX_ALLOCATION_SIZE, MAX_ALLOCATION_SIZE_PROPERTY, name| コンストラクタと説明 |
|---|
TimeStampVector(String name,
FieldType fieldType,
BufferAllocator allocator)
Instantiate a TimeStampVector.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
copyFrom(int fromIndex,
int thisIndex,
TimeStampVector 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,
TimeStampVector from)
Same as
copyFromSafe(int, int, TimeStampVector) except that
it handles the case when the capacity of the vector needs to be expanded
before copy. |
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. isSet indicates
whether the value is NULL or not.
|
void |
set(int index,
long value)
Set the element at the given index to the given value.
|
void |
setNull(int index)
Set the element at the given index to null.
|
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)
*
vector value setter methods *
*
|
allocateNew, allocateNew, allocateNewSafe, clear, close, decrementAllocationMonitor, getBuffers, getBufferSize, getBufferSizeFor, getChildrenFromFields, getDataBuffer, getDataBufferAddress, getField, getFieldBuffers, getFieldInnerVectors, getNullCount, getOffsetBuffer, getOffsetBufferAddress, getTransferPair, 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, waitgetAllocator, getMinorType, getObject, getReader, makeTransferPairforEach, iterator, spliteratorprotected 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 long get(int index)
throws IllegalStateException
index - position of elementIllegalStateExceptionpublic void copyFrom(int fromIndex,
int thisIndex,
TimeStampVector from)
fromIndex - position to copy from in source vectorthisIndex - position to copy to in this vectorfrom - source vectorpublic void copyFromSafe(int fromIndex,
int thisIndex,
TimeStampVector from)
copyFromSafe(int, int, TimeStampVector) 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 vectorprotected 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 setNull(int index)
index - position 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)
buffer - data bufferindex - position of the element.Copyright © 2018 The Apache Software Foundation. All rights reserved.