Module org.eclipse.persistence.core
Package org.eclipse.persistence.oxm
Interface CharacterEscapeHandler
- All Superinterfaces:
CharacterEscapeHandler
Provide an interface to allow for custom character escaping behaviour.
-
Method Summary
-
Method Details
-
escape
void escape(char[] buffer, int start, int length, boolean isAttributeValue, Writer out) throws IOException Perform character escaping and write the result to the output.
Note: This feature is not supported when marshalling to the following targets:
- javax.xml.stream.XMLStreamWriter
- javax.xml.stream.XMLEventWriter
- org.xml.sax.ContentHandler
- org.w3c.dom.Node
- Specified by:
escape
in interfaceCharacterEscapeHandler
- Parameters:
buffer
- Array of characters to be escapedstart
- The starting positionlength
- The number of characters being escapedisAttributeValue
- A value of 'true' indicates this is an attribute valueout
- The resulting escaped characters will be written to this Writer- Throws:
IOException
- In an error condition, IOException can be thrown to stop the marshalling process
-