public final class NestedRow extends BinarySection implements BaseRow
BinaryRow.
The only different is that, as NestedRow is used
to store row value in the variable-length part of BinaryRow,
every field (including both fixed-length part and variable-length part) of NestedRow
has a possibility to cross the boundary of a segment, while the fixed-length part of BinaryRow
must fit into its first memory segment.offset, segments, sizeInBytesHIGHEST_FIRST_BIT, HIGHEST_SECOND_TO_EIGHTH_BIT, MAX_FIX_PART_DATA_SIZE| Constructor and Description |
|---|
NestedRow(int arity) |
| Modifier and Type | Method and Description |
|---|---|
NestedRow |
copy() |
NestedRow |
copy(BaseRow reuse) |
int |
getArity()
Get the number of fields in the BaseRow.
|
BaseArray |
getArray(int pos)
Get array value, internal format is BaseArray.
|
byte[] |
getBinary(int pos)
Get binary value, internal format is byte[].
|
boolean |
getBoolean(int pos)
Get boolean value.
|
byte |
getByte(int pos)
Get byte value.
|
Decimal |
getDecimal(int pos,
int precision,
int scale)
Get decimal value, internal format is Decimal.
|
double |
getDouble(int pos)
Get double value.
|
float |
getFloat(int pos)
Get float value.
|
<T> BinaryGeneric<T> |
getGeneric(int pos)
Get generic value, internal format is BinaryGeneric.
|
byte |
getHeader()
The header represents the type of this Row.
|
int |
getInt(int pos)
Get int value.
|
long |
getLong(int pos)
Get long value.
|
BaseMap |
getMap(int pos)
Get map value, internal format is BaseMap.
|
BaseRow |
getRow(int pos,
int numFields)
Get row value, internal format is BaseRow.
|
short |
getShort(int pos)
Get short value.
|
BinaryString |
getString(int pos)
Get string value, internal format is BinaryString.
|
int |
hashCode() |
boolean |
isNullAt(int pos)
Because the specific row implementation such as BinaryRow uses the binary format.
|
void |
setBoolean(int pos,
boolean value)
Set boolean value.
|
void |
setByte(int pos,
byte value)
Set byte value.
|
void |
setDecimal(int pos,
Decimal value,
int precision)
Set the decimal column value.
|
void |
setDouble(int pos,
double value)
Set double value.
|
void |
setFloat(int pos,
float value)
Set float value.
|
void |
setHeader(byte header)
Set the byte header.
|
void |
setInt(int pos,
int value)
Set int value.
|
void |
setLong(int pos,
long value)
Set long value.
|
void |
setNullAt(int i)
|
void |
setShort(int pos,
short value)
Set short value.
|
equals, getOffset, getSegments, getSizeInBytes, pointTo, pointToclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitgetreadBinaryFieldFromSegments, readBinaryStringFieldFromSegmentspublic int getArity()
BaseRowpublic byte getHeader()
BaseRowpublic void setHeader(byte header)
BaseRowpublic void setNullAt(int i)
setNullAt in interface TypeGetterSetterspublic void setInt(int pos,
int value)
TypeGetterSetterssetInt in interface TypeGetterSetterspublic void setLong(int pos,
long value)
TypeGetterSetterssetLong in interface TypeGetterSetterspublic void setDouble(int pos,
double value)
TypeGetterSetterssetDouble in interface TypeGetterSetterspublic void setDecimal(int pos,
Decimal value,
int precision)
TypeGetterSettersNote: Precision is compact: can call setNullAt when decimal is null. Precision is not compact: can not call setNullAt when decimal is null, must call setDecimal(i, null, precision) because we need update var-length-part.
setDecimal in interface TypeGetterSetterspublic void setBoolean(int pos,
boolean value)
TypeGetterSetterssetBoolean in interface TypeGetterSetterspublic void setShort(int pos,
short value)
TypeGetterSetterssetShort in interface TypeGetterSetterspublic void setByte(int pos,
byte value)
TypeGetterSetterssetByte in interface TypeGetterSetterspublic void setFloat(int pos,
float value)
TypeGetterSetterssetFloat in interface TypeGetterSetterspublic boolean isNullAt(int pos)
TypeGetterSettersisNullAt in interface TypeGetterSetterspublic boolean getBoolean(int pos)
TypeGetterSettersgetBoolean in interface TypeGetterSetterspublic byte getByte(int pos)
TypeGetterSettersgetByte in interface TypeGetterSetterspublic short getShort(int pos)
TypeGetterSettersgetShort in interface TypeGetterSetterspublic int getInt(int pos)
TypeGetterSettersgetInt in interface TypeGetterSetterspublic long getLong(int pos)
TypeGetterSettersgetLong in interface TypeGetterSetterspublic float getFloat(int pos)
TypeGetterSettersgetFloat in interface TypeGetterSetterspublic double getDouble(int pos)
TypeGetterSettersgetDouble in interface TypeGetterSetterspublic BinaryString getString(int pos)
TypeGetterSettersgetString in interface TypeGetterSetterspublic Decimal getDecimal(int pos, int precision, int scale)
TypeGetterSettersgetDecimal in interface TypeGetterSetterspublic <T> BinaryGeneric<T> getGeneric(int pos)
TypeGetterSettersgetGeneric in interface TypeGetterSetterspublic byte[] getBinary(int pos)
TypeGetterSettersgetBinary in interface TypeGetterSetterspublic BaseRow getRow(int pos, int numFields)
TypeGetterSettersgetRow in interface TypeGetterSetterspublic BaseArray getArray(int pos)
TypeGetterSettersgetArray in interface TypeGetterSetterspublic BaseMap getMap(int pos)
TypeGetterSettersgetMap in interface TypeGetterSetterspublic NestedRow copy()
public int hashCode()
hashCode in class BinarySectionCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.