Interface Deserializer<T>
- Type Parameters:
T
- type
public interface Deserializer<T>
Provides an interface for deserializing an array of bytes into an Object
-
Method Summary
Modifier and TypeMethodDescriptiondeserialize
(byte[] input) Deserializes the given byte array input an Object and returns that value.
-
Method Details
-
deserialize
Deserializes the given byte array input an Object and returns that value.- Parameters:
input
- input- Returns:
- returns deserialized value
- Throws:
DeserializationException
- if a valid object cannot be deserialized from the given byte arrayIOException
- ex
-