Package net.sf.saxon.serialize
Class UnicodeNormalizer
- java.lang.Object
-
- net.sf.saxon.event.SequenceReceiver
-
- net.sf.saxon.event.ProxyReceiver
-
- net.sf.saxon.serialize.UnicodeNormalizer
-
public class UnicodeNormalizer extends ProxyReceiver
UnicodeNormalizer: This ProxyReceiver performs unicode normalization on the contents of attribute and text nodes.
-
-
Field Summary
-
Fields inherited from class net.sf.saxon.event.ProxyReceiver
nextReceiver
-
Fields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemId
-
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
-
-
Constructor Summary
Constructors Constructor Description UnicodeNormalizer(String form, Receiver next)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattribute(NodeName nameCode, SimpleType typeCode, CharSequence value, Location locationId, int properties)Output an attributevoidcharacters(CharSequence chars, Location locationId, int properties)Output character dataNormalizergetNormalizer()Get the underlying normalizerCharSequencenormalize(CharSequence in, boolean containsNullMarkers)-
Methods inherited from class net.sf.saxon.event.ProxyReceiver
append, close, comment, endDocument, endElement, getNamePool, getNextReceiver, namespace, open, processingInstruction, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, startDocument, startElement, usesTypeAnnotations
-
Methods inherited from class net.sf.saxon.event.SequenceReceiver
append, decompose, flatten, getConfiguration, getErrorCodeForDecomposingFunctionItems, getPipelineConfiguration, getSystemId, handlesAppend
-
-
-
-
Constructor Detail
-
UnicodeNormalizer
public UnicodeNormalizer(String form, Receiver next) throws XPathException
- Throws:
XPathException
-
-
Method Detail
-
getNormalizer
public Normalizer getNormalizer()
Get the underlying normalizer- Returns:
- the underlying Normalizer
-
attribute
public void attribute(NodeName nameCode, SimpleType typeCode, CharSequence value, Location locationId, int properties) throws XPathException
Output an attribute- Specified by:
attributein interfaceReceiver- Overrides:
attributein classProxyReceiver- Parameters:
nameCode- The name of the attributetypeCode- The type of the attributevalue- the string value of the attributelocationId- The location of the nodeproperties- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this attribute
- NO_SPECIAL_CHARACTERS
- Attribute value contains no special characters
- Throws:
XPathException- if an error occurs
-
characters
public void characters(CharSequence chars, Location locationId, int properties) throws XPathException
Output character data- Specified by:
charactersin interfaceReceiver- Overrides:
charactersin classProxyReceiver- Parameters:
chars- The characterslocationId- provides information such as line number and system ID.properties- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this text node
- USE_CDATA
- Output as a CDATA section
- Throws:
XPathException- if an error occurs
-
normalize
public CharSequence normalize(CharSequence in, boolean containsNullMarkers)
-
-