public interface Serializer<V extends Object>
序列化器。
序列化器用于基于特定的格式,对数据进行序列化和反序列化。
abstract <T extends Any> V
serialize(T target)
abstract <T extends Any> T
deserialize(V value, Class<T> type)
deserialize(V value, Type type)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract <T extends Any> V serialize(T target)
序列化指定对象。
abstract <T extends Any> T deserialize(V value, Class<T> type)
反序列化指定的格式。
abstract <T extends Any> T deserialize(V value, Type type)