JsonFormatVisitable, SchemaAware, ContextualSerializer, Serializablepublic static final class NumberSerializers.IntegerSerializer extends NumberSerializers.Base<Object>
Integers
(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_handledType| Constructor | Description |
|---|---|
IntegerSerializer(Class<?> type) |
| Modifier and Type | Method | Description |
|---|---|---|
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.
|
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterIdacceptJsonFormatVisitor, createContextual, getSchemaclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait_neitherNull, _nonEmpty, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrowpublic IntegerSerializer(Class<?> type)
public void serialize(Object value, com.fasterxml.jackson.core.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, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider, TypeSerializer typeSer) throws IOException
StdScalarSerializerserializeWithType 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 informationIOExceptionCopyright © 2008–2018. All rights reserved.