public static final class NumberSerializers.IntegerSerializer extends NumberSerializers.Base<Object>
Integer
s
(and primitive ints)
Since this is one of "native" types, no type information is ever included on serialization (unlike for most scalar types)
NOTE: as of 2.6, generic signature changed to Object, to avoid generation of bridge methods.
JsonSerializer.None
_isInt, _numberType, _schemaType, EMPTY_INTEGER
_handledType
Constructor and Description |
---|
IntegerSerializer() |
Modifier and Type | Method and Description |
---|---|
boolean |
isEmpty(SerializerProvider prov,
Object value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
void |
serialize(Object value,
com.fasterxml.jackson.core.JsonGenerator gen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(Object value,
com.fasterxml.jackson.core.JsonGenerator gen,
SerializerProvider provider,
TypeSerializer typeSer)
Default implementation will write type prefix, call regular serialization
method (since assumption is that value itself does not need JSON
Array or Object start/end markers), and then write type suffix.
|
acceptJsonFormatVisitor, createContextual, getSchema
createObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, findPropertyFilter, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId
public void serialize(Object value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider) throws IOException
JsonSerializer
serialize
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.IOException
public void serializeWithType(Object value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider, TypeSerializer typeSer) throws IOException
StdScalarSerializer
serializeWithType
in class StdScalarSerializer<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.typeSer
- Type serializer to use for including type informationIOException
public boolean isEmpty(SerializerProvider prov, Object value)
JsonSerializer
Default implementation will consider only null values to be empty.
NOTE: replaces JsonSerializer.isEmpty(Object)
, deprecated in 2.5
isEmpty
in class JsonSerializer<Object>
Copyright © 2014–2015 FasterXML. All rights reserved.