Class StdJdkSerializers.AtomicLongSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<AtomicLong>
com.fasterxml.jackson.databind.ser.std.StdSerializer<AtomicLong>
com.fasterxml.jackson.databind.ser.std.StdScalarSerializer<AtomicLong>
com.fasterxml.jackson.databind.ser.std.StdJdkSerializers.AtomicLongSerializer
- All Implemented Interfaces:
JsonFormatVisitable
,SchemaAware
,Serializable
- Enclosing class:
StdJdkSerializers
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
acceptJsonFormatVisitor
(JsonFormatVisitorWrapper visitor, JavaType typeHint) Default implementation specifies no format.getSchema
(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15void
serialize
(AtomicLong value, JsonGenerator gen, SerializerProvider provider) Method that can be called to ask implementation to serialize values of type this serializer handles.Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdScalarSerializer
serializeWithType
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
-
Constructor Details
-
AtomicLongSerializer
public AtomicLongSerializer()
-
-
Method Details
-
serialize
public void serialize(AtomicLong value, JsonGenerator gen, SerializerProvider provider) throws IOException Description copied from class:JsonSerializer
Method that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serialize
in classStdSerializer<AtomicLong>
- 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:
IOException
-
getSchema
Deprecated.Since 2.15Description copied from class:StdSerializer
Default implementation simply claims type is "string"; usually overriden by custom serializers.- Specified by:
getSchema
in interfaceSchemaAware
- Overrides:
getSchema
in classStdScalarSerializer<AtomicLong>
- Parameters:
provider
- The serializer provider.typeHint
- A hint about the type.- Returns:
- Json-schema for this serializer.
-
acceptJsonFormatVisitor
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException Description copied from class:StdSerializer
Default implementation specifies no format. This behavior is usually overriden by custom serializers.- Specified by:
acceptJsonFormatVisitor
in interfaceJsonFormatVisitable
- Overrides:
acceptJsonFormatVisitor
in classStdScalarSerializer<AtomicLong>
- Parameters:
typeHint
- Type of element (entity like property) being visited- Throws:
JsonMappingException
-