-
public abstract class Serializer<T extends Object>A serializer for some type T. Each format will define its own abstract subclass that contains that format's read/write methods. If no TypeMirror is passed to the constructor, the resolved type parameter is used.
Serializers only work on precisely the type they're created for. If serializers for a whole range of types are required, use a SerializerFactory
-
-
Field Summary
Fields Modifier and Type Field Description private final TypeMirrortype
-
Constructor Summary
Constructors Constructor Description Serializer(TypeMirror type)Serializer()
-