public abstract class AbstractMapVector extends AbstractContainerVector
ValueVector.Accessor, ValueVector.Mutatorallocator, callBack, name| Modifier | Constructor and Description |
|---|---|
protected |
AbstractMapVector(String name,
BufferAllocator allocator,
CallBack callBack) |
| Modifier and Type | Method and Description |
|---|---|
protected ValueVector |
add(String childName,
FieldType fieldType) |
<T extends FieldVector> |
addOrGet(String childName,
FieldType fieldType,
Class<T> clazz)
Adds a new field with the given parameters or replaces the existing one and consequently returns the resultant
ValueVector. |
boolean |
allocateNewSafe()
Allocates new buffers.
|
void |
close()
Clears out all underlying child vectors.
|
ArrowBuf[] |
getBuffers(boolean clear)
Return the underlying buffers associated with this vector.
|
int |
getBufferSize() |
<T extends FieldVector> |
getChild(String name,
Class<T> clazz)
Returns a
ValueVector instance of subtype of T corresponding to the given
field name if exists or null. |
ValueVector |
getChildByOrdinal(int id)
Returns a
ValueVector corresponding to the given ordinal identifier. |
protected List<String> |
getChildFieldNames() |
protected List<FieldVector> |
getChildren() |
VectorWithOrdinal |
getChildVectorWithOrdinal(String name) |
List<ValueVector> |
getPrimitiveVectors() |
Iterator<ValueVector> |
iterator() |
protected void |
putChild(String name,
FieldVector vector)
Inserts the vector with the given name if it does not exist else replaces it with the new value.
|
protected void |
putVector(String name,
FieldVector vector)
Inserts the input vector into the map if it does not exist, replaces if it exists already
|
void |
reAlloc()
Allocate new buffer with double capacity, and copy data into the new buffer.
|
int |
size() |
addOrGetList, addOrGetMap, addOrGetUnion, allocateNew, getAllocator, getChild, supportsDirectRead, typeifyclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclear, getAccessor, getBufferSizeFor, getDataBuffer, getField, getMinorType, getMutator, getOffsetBuffer, getReader, getTransferPair, getTransferPair, getTransferPair, getValidityBuffer, getValueCapacity, makeTransferPair, setInitialCapacityforEach, spliteratorprotected AbstractMapVector(String name, BufferAllocator allocator, CallBack callBack)
public void close()
AbstractContainerVectorclose in interface Closeableclose in interface AutoCloseableclose in interface ValueVectorclose in class AbstractContainerVectorpublic boolean allocateNewSafe()
ValueVectorpublic void reAlloc()
ValueVectorpublic <T extends FieldVector> T addOrGet(String childName, FieldType fieldType, Class<T> clazz)
ValueVector.
Execution takes place in the following order:
IllegalStateException
addOrGet in class AbstractContainerVectorT - class type of expected vector typechildName - the name of the fieldfieldType - the type for the vectorclazz - class of expected vector typeValueVectorIllegalStateException - raised if there is a hard schema changepublic ValueVector getChildByOrdinal(int id)
ValueVector corresponding to the given ordinal identifier.id - the ordinal of the child to returnpublic <T extends FieldVector> T getChild(String name, Class<T> clazz)
ValueVector instance of subtype of T corresponding to the given
field name if exists or null.getChild in class AbstractContainerVectorname - the name of the child to returnclazz - the expected type of the childprotected ValueVector add(String childName, FieldType fieldType)
protected void putChild(String name, FieldVector vector)
name - the name of the child to addvector - the vector to add as a childprotected void putVector(String name, FieldVector vector)
name - field namevector - vector to be insertedprotected List<FieldVector> getChildren()
public int size()
size in class AbstractContainerVectorpublic Iterator<ValueVector> iterator()
public List<ValueVector> getPrimitiveVectors()
public VectorWithOrdinal getChildVectorWithOrdinal(String name)
getChildVectorWithOrdinal in class AbstractContainerVectorname - the name of the child to returnpublic ArrowBuf[] getBuffers(boolean clear)
ValueVectorclear - Whether to clear vector before returning; the buffers will still be refcounted;
but the returned array will be the only reference to thembuffers that is used by this vector instance.public int getBufferSize()
Copyright © 2017 The Apache Software Foundation. All rights reserved.