Class NumberSerializers.IntegerSerializer
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.JsonSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdScalarSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base<java.lang.Object>
 - 
- com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 JsonFormatVisitable,SchemaAware,ContextualSerializer,java.io.Serializable
- Enclosing class:
 - NumberSerializers
 
public static class NumberSerializers.IntegerSerializer extends NumberSerializers.Base<java.lang.Object>
This is the special serializer for regularIntegers (and primitive ints)Since this is one of "natural" types, no type information is ever included on serialization (unlike for most scalar types, except for
double).NOTE: as of 2.6, generic signature changed to Object, to avoid generation of bridge methods.
- See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None 
 - 
 
- 
Constructor Summary
Constructors Constructor Description IntegerSerializer(java.lang.Class<?> type) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidserialize(java.lang.Object value, JsonGenerator gen, SerializerProvider provider)Method that can be called to ask implementation to serialize values of type this serializer handles.voidserializeWithType(java.lang.Object value, 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.- 
Methods inherited from class com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base
acceptJsonFormatVisitor, createContextual, getSchema 
- 
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
getSchema, handledType, wrapAndThrow, wrapAndThrow 
- 
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId, withIgnoredProperties 
 - 
 
 - 
 
- 
- 
Method Detail
- 
serialize
public void serialize(java.lang.Object value, JsonGenerator gen, SerializerProvider provider) 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.gen- Generator used to output resulting Json contentprovider- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
 java.io.IOException
 
- 
serializeWithType
public void serializeWithType(java.lang.Object value, JsonGenerator gen, SerializerProvider provider, TypeSerializer typeSer) throws java.io.IOExceptionDescription copied from class:StdScalarSerializerDefault 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. This should work for most cases; some sub-classes may want to change this behavior.- Overrides:
 serializeWithTypein classStdScalarSerializer<java.lang.Object>- Parameters:
 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 information- Throws:
 java.io.IOException
 
 - 
 
 -