com.fasterxml.jackson.databind.ser.std
Class StdJdkSerializers.AtomicReferenceSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdSerializer<AtomicReference<?>>
com.fasterxml.jackson.databind.ser.std.StdJdkSerializers.AtomicReferenceSerializer
- All Implemented Interfaces:
- JsonFormatVisitable, SchemaAware
- Enclosing class:
- StdJdkSerializers
public static final class StdJdkSerializers.AtomicReferenceSerializer
- extends StdSerializer<AtomicReference<?>>
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StdJdkSerializers.AtomicReferenceSerializer
public StdJdkSerializers.AtomicReferenceSerializer()
serialize
public void serialize(AtomicReference<?> value,
JsonGenerator jgen,
SerializerProvider provider)
throws IOException,
JsonGenerationException
- 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 class StdSerializer<AtomicReference<?>>
- Parameters:
value - Value to serialize; can not be null.jgen - Generator used to output resulting Json contentprovider - Provider that can be used to get serializers for
serializing Objects value contains, if any.
- Throws:
IOException
JsonGenerationException
getSchema
public JsonNode getSchema(SerializerProvider provider,
Type typeHint)
- Description copied from class:
StdSerializer
- Default implementation simply claims type is "string"; usually
overriden by custom serializers.
- Specified by:
getSchema in interface SchemaAware- Overrides:
getSchema in class StdSerializer<AtomicReference<?>>
- 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)
- Description copied from class:
StdSerializer
- Default implementation specifies no format. This behavior is usually
overriden by custom serializers.
- Specified by:
acceptJsonFormatVisitor in interface JsonFormatVisitable- Overrides:
acceptJsonFormatVisitor in class StdSerializer<AtomicReference<?>>
typeHint - Type of element (entity like property) being visited
Copyright © 2012 FasterXML. All Rights Reserved.