public final class ByteSerializer extends SerializerSingleton<Byte>
Byte (and byte, via auto-boxing).| Modifier and Type | Field and Description |
|---|---|
static ByteSerializer |
INSTANCE
Sharable instance of the IntSerializer.
|
| Constructor and Description |
|---|
ByteSerializer() |
| Modifier and Type | Method and Description |
|---|---|
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.
|
Byte |
deserializeFromString(String s)
De-serializes a record from string.
|
void |
serialize(Byte record,
DataOutputView target)
Serializes the given record to the given target output view.
|
String |
serializeToString(Byte record)
Serializes the given record to string.
|
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.public String serializeToString(Byte record)
Serializerrecord - The record to serialize.public Byte deserializeFromString(String s)
Serializers - The string to de-serialize.Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.