public class NullSerializer extends StdSerializer<Object>
JsonSerializer.None| Modifier and Type | Field and Description |
|---|---|
static NullSerializer |
instance |
_handledType| Modifier and Type | Method and Description |
|---|---|
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonNode |
getSchema(SerializerProvider provider,
Type typeHint)
Default implementation simply claims type is "string"; usually
overriden by custom serializers.
|
void |
serialize(Object value,
JsonGenerator gen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(Object value,
JsonGenerator gen,
SerializerProvider serializers,
TypeSerializer typeSer)
Although this method should rarely get called, for convenience we should override
it, and handle it same way as "natural" types: by serializing exactly as is,
without type decorations.
|
createObjectNode, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrowgetDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterIdpublic static final NullSerializer instance
public void serialize(Object value, JsonGenerator gen, SerializerProvider provider) throws IOException
JsonSerializerserialize in class StdSerializer<Object>value - Value to serialize; can not be null.gen - Generator used to output resulting Json contentprovider - Provider that can be used to get serializers for
serializing Objects value contains, if any.IOExceptionpublic void serializeWithType(Object value, JsonGenerator gen, SerializerProvider serializers, TypeSerializer typeSer) throws IOException
serializeWithType in class JsonSerializer<Object>value - Value to serialize; can not be null.gen - Generator used to output resulting Json contentserializers - Provider that can be used to get serializers for
serializing Objects value contains, if any.typeSer - Type serializer to use for including type informationIOExceptionpublic JsonNode getSchema(SerializerProvider provider, Type typeHint) throws JsonMappingException
StdSerializergetSchema in interface SchemaAwaregetSchema in class StdSerializer<Object>provider - The serializer provider.typeHint - A hint about the type.JsonMappingExceptionpublic void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializeracceptJsonFormatVisitor in interface JsonFormatVisitableacceptJsonFormatVisitor in class StdSerializer<Object>typeHint - Type of element (entity like property) being visitedJsonMappingExceptionCopyright © 2017 JBoss by Red Hat. All rights reserved.