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 Type
    Method
    Description
    deserialize(byte[] input)
    Deserializes the given byte array input an Object and returns that value.
  • Method Details