Class StdKeySerializers.EnumKeySerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<Object>
com.fasterxml.jackson.databind.ser.std.StdSerializer<Object>
com.fasterxml.jackson.databind.ser.std.StdKeySerializers.EnumKeySerializer
- All Implemented Interfaces:
JsonFormatVisitable
,SchemaAware
,Serializable
- Enclosing class:
StdKeySerializers
Specialized instance to use for Enum keys, as per [databind#1322]
- Since:
- 2.8
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final EnumValues
protected final EnumValues
Map with key as converted property class defined implementation ofEnumNamingStrategy
and with value as Enum names collected usingEnum.name()
.Fields inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_handledType
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
EnumKeySerializer
(Class<?> enumType, EnumValues values) protected
EnumKeySerializer
(Class<?> enumType, EnumValues values, EnumValues valuesByEnumNaming) -
Method Summary
Modifier and TypeMethodDescriptionconstruct
(Class<?> enumType, EnumValues enumValues) construct
(Class<?> enumType, EnumValues enumValues, EnumValues valuesByEnumNaming) void
serialize
(Object value, com.fasterxml.jackson.core.JsonGenerator g, SerializerProvider serializers) Method that can be called to ask implementation to serialize values of type this serializer handles.Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_neitherNull, _nonEmpty, acceptJsonFormatVisitor, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId, withIgnoredProperties
-
Field Details
-
_values
-
_valuesByEnumNaming
Map with key as converted property class defined implementation ofEnumNamingStrategy
and with value as Enum names collected usingEnum.name()
.- Since:
- 2.15
-
-
Constructor Details
-
EnumKeySerializer
-
EnumKeySerializer
- Since:
- 2.15
-
-
Method Details
-
construct
public static StdKeySerializers.EnumKeySerializer construct(Class<?> enumType, EnumValues enumValues) -
construct
public static StdKeySerializers.EnumKeySerializer construct(Class<?> enumType, EnumValues enumValues, EnumValues valuesByEnumNaming) -
serialize
public void serialize(Object value, com.fasterxml.jackson.core.JsonGenerator g, SerializerProvider serializers) throws IOException Description copied from class:JsonSerializer
Method that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serialize
in classStdSerializer<Object>
- Parameters:
value
- Value to serialize; can not be null.g
- Generator used to output resulting Json contentserializers
- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
IOException
-