com.fasterxml.jackson.databind.ext
Class DOMSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<T>
com.fasterxml.jackson.databind.ser.std.StdSerializer<Node>
com.fasterxml.jackson.databind.ext.DOMSerializer
- All Implemented Interfaces:
- JsonFormatVisitable, SchemaAware
public class DOMSerializer
- extends StdSerializer<Node>
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_domImpl
protected final DOMImplementationLS _domImpl
DOMSerializer
public DOMSerializer()
serialize
public void serialize(Node 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<Node>
- 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<Node>
- 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<Node>
typeHint
- Type of element (entity like property) being visited
Copyright © 2012 FasterXML. All Rights Reserved.