public static final class NumberSerializers.IntLikeSerializer extends NumberSerializers.Base<java.lang.Object>
NumberSerializers.IntegerSerializer
, but will not cast to Integer:
instead, cast is to Number
, and conversion is by
calling Number.intValue()
.JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
(package private) static NumberSerializers.IntLikeSerializer |
instance |
_isInt, _numberType, _schemaType
_handledType
Constructor and Description |
---|
IntLikeSerializer() |
Modifier and Type | Method and Description |
---|---|
void |
serialize(java.lang.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.
|
acceptJsonFormatVisitor, createContextual, getSchema
serializeWithType
createObjectNode, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findPropertyFilter, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId
static final NumberSerializers.IntLikeSerializer instance
public void serialize(java.lang.Object value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider) throws java.io.IOException
JsonSerializer
serialize
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.IOException