Modifier and Type | Method and Description |
---|---|
static <T> RawValueData<T> |
RawValueData.fromBytes(byte[] bytes)
Creates an instance of
RawValueData from the given byte array. |
static <T> RawValueData<T> |
RawValueData.fromObject(T javaObject)
Creates an instance of
RawValueData from a Java object. |
<T> RawValueData<T> |
ColumnarRowData.getRawValue(int pos) |
<T> RawValueData<T> |
ColumnarArrayData.getRawValue(int pos) |
<T> RawValueData<T> |
BoxedWrapperRowData.getRawValue(int pos) |
<T> RawValueData<T> |
UpdatableRowData.getRawValue(int pos) |
<T> RawValueData<T> |
JoinedRowData.getRawValue(int pos) |
<T> RawValueData<T> |
GenericRowData.getRawValue(int pos) |
<T> RawValueData<T> |
GenericArrayData.getRawValue(int pos) |
<T> RawValueData<T> |
RowData.getRawValue(int pos)
Returns the raw value at the given position.
|
<T> RawValueData<T> |
ArrayData.getRawValue(int pos)
Returns the raw value at the given position.
|
Modifier and Type | Class and Description |
---|---|
class |
BinaryRawValueData<T>
A lazily binary implementation of
RawValueData which is backed by MemorySegment s
and generic Object . |
Modifier and Type | Method and Description |
---|---|
<T> RawValueData<T> |
BinaryRowData.getRawValue(int pos) |
<T> RawValueData<T> |
BinaryArrayData.getRawValue(int pos) |
<T> RawValueData<T> |
NestedRowData.getRawValue(int pos) |
static <T> RawValueData<T> |
BinarySegmentUtils.readRawValueData(MemorySegment[] segments,
int baseOffset,
long offsetAndSize)
Gets an instance of
RawValueData from underlying MemorySegment . |
Modifier and Type | Method and Description |
---|---|
RawValueData<T> |
RawByteArrayConverter.toInternal(byte[] external) |
RawValueData<T> |
RawObjectConverter.toInternal(T external) |
Modifier and Type | Method and Description |
---|---|
byte[] |
RawByteArrayConverter.toExternal(RawValueData<T> internal) |
T |
RawObjectConverter.toExternal(RawValueData<T> internal) |
Modifier and Type | Method and Description |
---|---|
void |
BinaryWriter.writeRawValue(int pos,
RawValueData<?> value,
RawValueDataSerializer<?> serializer) |
Modifier and Type | Method and Description |
---|---|
RawValueData<T> |
RawValueDataSerializer.copy(RawValueData<T> from) |
RawValueData<T> |
RawValueDataSerializer.copy(RawValueData<T> from,
RawValueData<T> reuse) |
RawValueData<T> |
RawValueDataSerializer.createInstance() |
RawValueData<T> |
RawValueDataSerializer.deserialize(DataInputView source) |
RawValueData<T> |
RawValueDataSerializer.deserialize(RawValueData<T> record,
DataInputView source) |
Modifier and Type | Method and Description |
---|---|
TypeSerializerSnapshot<RawValueData<T>> |
RawValueDataSerializer.snapshotConfiguration() |
Modifier and Type | Method and Description |
---|---|
RawValueData<T> |
RawValueDataSerializer.copy(RawValueData<T> from) |
RawValueData<T> |
RawValueDataSerializer.copy(RawValueData<T> from,
RawValueData<T> reuse) |
RawValueData<T> |
RawValueDataSerializer.copy(RawValueData<T> from,
RawValueData<T> reuse) |
RawValueData<T> |
RawValueDataSerializer.deserialize(RawValueData<T> record,
DataInputView source) |
void |
RawValueDataSerializer.serialize(RawValueData<T> record,
DataOutputView target) |
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.