public final class IntSerializer extends SerializerSingleton<Integer>
Integer (and int, via auto-boxing).| Modifier and Type | Field and Description |
|---|---|
static IntSerializer |
INSTANCE
Sharable instance of the IntSerializer.
|
| Constructor and Description |
|---|
IntSerializer() |
| Modifier and Type | Method and Description |
|---|---|
Integer |
copy(Integer from)
Creates a deep copy of the given element in a new element.
|
Integer |
deserialize(DataInputView source)
De-serializes a record from the given source input view.
|
Integer |
deserializeFromString(String s)
De-serializes a record from string.
|
void |
serialize(Integer record,
DataOutputView target)
Serializes the given record to the given target output view.
|
String |
serializeToString(Integer record)
Serializes the given record to string.
|
duplicate, equals, hashCodepublic static final IntSerializer INSTANCE
public Integer copy(Integer from)
Serializerfrom - The element reuse be copied.public void serialize(Integer 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 Integer 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(Integer record)
Serializerrecord - The record to serialize.public Integer deserializeFromString(String s)
Serializers - The string to de-serialize.Copyright © 2023–2025 The Apache Software Foundation. All rights reserved.