The Kryo library bundles with it the EnumNameSerializer that can be used as the default serializer for Enum types instead of DefaultSerializers.EnumSerializer.
The EnumNameSerializer can be configured as below -
kryo.addDefaultSerializer(Enum.class, EnumNameSerializer.class);
The EnumNameSerializer however does not have a public default constructor and i am unable to configure it declaratively using the subzero-serializers.properties. Also, it appears that the PropertyUserSerializer class supports only setting up one default serializer.
Any recommendations on how the EnumNameSerializer can configured via subzero?