Class EnumSerializer
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<Enum<?>>
org.codehaus.jackson.map.ser.std.SerializerBase<Enum<?>>
org.codehaus.jackson.map.ser.std.ScalarSerializerBase<Enum<?>>
org.codehaus.jackson.map.ser.std.EnumSerializer
- All Implemented Interfaces:
SchemaAware
- Direct Known Subclasses:
EnumSerializer
Standard serializer used for
Enum types.
Based on ScalarSerializerBase since the JSON value is
scalar (String).
- Author:
- tatu
-
Nested Class Summary
Nested classes/interfaces inherited from class JsonSerializer
JsonSerializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final EnumValuesThis map contains pre-resolved values (since there are ways to customize actual String constants to use) to use as serializations.Fields inherited from class SerializerBase
_handledType -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic EnumSerializerconstruct(Class<Enum<?>> enumClass, SerializationConfig config, BasicBeanDescription beanDesc) getSchema(SerializerProvider provider, Type typeHint) Note: since Jackson 1.9, default implementation claims type is "string"final voidserialize(Enum<?> en, JsonGenerator jgen, SerializerProvider provider) Method that can be called to ask implementation to serialize values of type this serializer handles.Methods inherited from class ScalarSerializerBase
serializeWithTypeMethods inherited from class SerializerBase
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrowMethods inherited from class JsonSerializer
isUnwrappingSerializer, unwrappingSerializer
-
Field Details
-
_values
This map contains pre-resolved values (since there are ways to customize actual String constants to use) to use as serializations.
-
-
Constructor Details
-
EnumSerializer
-
-
Method Details
-
construct
public static EnumSerializer construct(Class<Enum<?>> enumClass, SerializationConfig config, BasicBeanDescription beanDesc) -
serialize
public final void serialize(Enum<?> en, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException Description copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serializein classSerializerBase<Enum<?>>- Parameters:
en- Value to serialize; can not be null.jgen- Generator used to output resulting Json contentprovider- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
IOExceptionJsonGenerationException
-
getSchema
Description copied from class:SerializerBaseNote: since Jackson 1.9, default implementation claims type is "string"- Specified by:
getSchemain interfaceSchemaAware- Overrides:
getSchemain classScalarSerializerBase<Enum<?>>- Parameters:
provider- The serializer provider.typeHint- A hint about the type.- Returns:
- Json-schema for this serializer.
-
getEnumValues
-