Class DOMSerializer
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.JsonSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdSerializer<org.w3c.dom.Node>
 - 
- com.fasterxml.jackson.databind.ext.DOMSerializer
 
 
 
 
- 
- All Implemented Interfaces:
 JsonFormatVisitable,SchemaAware,java.io.Serializable
public class DOMSerializer extends StdSerializer<org.w3c.dom.Node>
- 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 DOMSerializer() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint)Default implementation specifies no format.JsonNodegetSchema(SerializerProvider provider, java.lang.reflect.Type typeHint)Default implementation simply claims type is "string"; usually overriden by custom serializers.voidserialize(org.w3c.dom.Node value, JsonGenerator g, 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.StdSerializer
getSchema, handledType, wrapAndThrow, wrapAndThrow 
- 
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId 
 - 
 
 - 
 
- 
- 
Method Detail
- 
serialize
public void serialize(org.w3c.dom.Node value, JsonGenerator g, 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<org.w3c.dom.Node>- Parameters:
 value- Value to serialize; can not be null.g- 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
 
- 
getSchema
public JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint)
Description copied from class:StdSerializerDefault implementation simply claims type is "string"; usually overriden by custom serializers.- Specified by:
 getSchemain interfaceSchemaAware- Overrides:
 getSchemain classStdSerializer<org.w3c.dom.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) throws JsonMappingException
Description copied from class:StdSerializerDefault implementation specifies no format. This behavior is usually overriden by custom serializers.- Specified by:
 acceptJsonFormatVisitorin interfaceJsonFormatVisitable- Overrides:
 acceptJsonFormatVisitorin classStdSerializer<org.w3c.dom.Node>typeHint- Type of element (entity like property) being visited- Throws:
 JsonMappingException
 
 - 
 
 -