public final class ByteSerializer extends SerializerSingleton<Byte>
Byte (and byte, via auto-boxing).| 限定符和类型 | 字段和说明 |
|---|---|
static ByteSerializer |
INSTANCE
Sharable instance of the IntSerializer.
|
| 构造器和说明 |
|---|
ByteSerializer() |
| 限定符和类型 | 方法和说明 |
|---|---|
Byte |
copy(Byte from)
Creates a deep copy of the given element in a new element.
|
Byte |
deserialize(DataInputView source)
De-serializes a record from the given source input view.
|
void |
serialize(Byte record,
DataOutputView target)
Serializes the given record to the given target output view.
|
duplicate, equals, hashCodepublic static final ByteSerializer INSTANCE
public Byte copy(Byte from)
Serializerfrom - The element reuse be copied.public void serialize(Byte record, DataOutputView target) throws IOException
Serializerrecord - The record to serialize.target - The output view to write the serialized data to.IOException - Thrown, if the serialization encountered an I/O related error. Typically
raised by the output view, which may have an underlying I/O channel to which it
delegates.public Byte deserialize(DataInputView source) throws IOException
Serializersource - The input view from which to read the data.IOException - Thrown, if the de-serialization encountered an I/O related error.
Typically raised by the input view, which may have an underlying I/O channel from which
it reads.Copyright © 2023 The Apache Software Foundation. All rights reserved.