-
public abstract class TypeAnalyzer<T extends Object, R extends TypeReader<T>, W extends TypeWriter<T>, S extends Serializer<?>>Type analyzers are the backend for many serializers, providing a format-agnostic way to implement the complex process of extracting serializable data from an object and later assembling that data back together into a new object.
Type analyzers MUST be thread safe, however the TypeReader and TypeWriter objects they return might not be.
-
-
Constructor Summary
Constructors Constructor Description TypeAnalyzer(Prism<S> prism, ConcreteTypeMirror type)
-