public class NullSerializer extends StdSerializer<java.lang.Object>
JsonSerializer.None| Modifier and Type | Field and Description | 
|---|---|
static NullSerializer | 
instance  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
                       JavaType typeHint)
Default implementation specifies no format. 
 | 
JsonNode | 
getSchema(SerializerProvider provider,
         java.lang.reflect.Type typeHint)
Default implementation simply claims type is "string"; usually
 overriden by custom serializers. 
 | 
void | 
serialize(java.lang.Object value,
         JsonGenerator gen,
         SerializerProvider provider)
Method that can be called to ask implementation to serialize
 values of type this serializer handles. 
 | 
void | 
serializeWithType(java.lang.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. 
 | 
getSchema, handledType, wrapAndThrow, wrapAndThrowgetDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterIdpublic static final NullSerializer instance
public void serialize(java.lang.Object value,
                      JsonGenerator gen,
                      SerializerProvider provider)
               throws java.io.IOException
JsonSerializerserialize in class StdSerializer<java.lang.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.java.io.IOExceptionpublic void serializeWithType(java.lang.Object value,
                              JsonGenerator gen,
                              SerializerProvider serializers,
                              TypeSerializer typeSer)
                       throws java.io.IOException
serializeWithType in class JsonSerializer<java.lang.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 informationjava.io.IOExceptionpublic JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint) throws JsonMappingException
StdSerializergetSchema in interface SchemaAwaregetSchema in class StdSerializer<java.lang.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<java.lang.Object>typeHint - Type of element (entity like property) being visitedJsonMappingException"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"