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, hashCode
public static final IntSerializer INSTANCE
public Integer copy(Integer from)
Serializer
from
- The element reuse be copied.public void serialize(Integer record, DataOutputView target) throws IOException
Serializer
record
- 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
Serializer
source
- 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)
Serializer
record
- The record to serialize.public Integer deserializeFromString(String s)
Serializer
s
- The string to de-serialize.Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.