Interface FieldTypeSerializer<T>

Type Parameters:
T - type for which this serializer is being registered.
All Known Implementing Classes:
AdvancedEnumSerializer

public interface FieldTypeSerializer<T>
Interface representing a custom serializer and deserializer of a field type. You should write a custom one if you are not happy with how AnnotationConfig serializes and deserializes by default. You will also need to register your newly created class, implementing this interface, through SerializerRegistry.registerSerializer(Class, FieldTypeSerializer)
Since:
2.0.0
Author:
MrIvanPlays