Class StdKeySerializers.EnumKeySerializer
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.JsonSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdSerializer<java.lang.Object>
 - 
- com.fasterxml.jackson.databind.ser.std.StdKeySerializers.EnumKeySerializer
 
 
 
 
- 
- All Implemented Interfaces:
 JsonFormatVisitable,SchemaAware,java.io.Serializable
- Enclosing class:
 - StdKeySerializers
 
public static class StdKeySerializers.EnumKeySerializer extends StdSerializer<java.lang.Object>
Specialized instance to use for Enum keys, as per [databind#1322]- Since:
 - 2.8
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None 
 - 
 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StdKeySerializers.EnumKeySerializerconstruct(java.lang.Class<?> enumType, EnumValues enumValues)static StdKeySerializers.EnumKeySerializerconstruct(java.lang.Class<?> enumType, EnumValues enumValues, EnumValues valuesByEnumNaming)voidserialize(java.lang.Object value, 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
acceptJsonFormatVisitor, getSchema, getSchema, handledType, wrapAndThrow, wrapAndThrow 
- 
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId, withIgnoredProperties 
 - 
 
 - 
 
- 
- 
Method Detail
- 
construct
public static StdKeySerializers.EnumKeySerializer construct(java.lang.Class<?> enumType, EnumValues enumValues)
 
- 
construct
public static StdKeySerializers.EnumKeySerializer construct(java.lang.Class<?> enumType, EnumValues enumValues, EnumValues valuesByEnumNaming)
 
- 
serialize
public void serialize(java.lang.Object value, JsonGenerator g, SerializerProvider serializers) throws java.io.IOExceptionDescription copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
 serializein classStdSerializer<java.lang.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:
 java.io.IOException
 
 - 
 
 -