public class UncommittedSerializer extends ProxyReceiver
nextReceiverpipelineConfiguration, previousAtomic, systemId| Constructor and Description |
|---|
UncommittedSerializer(javax.xml.transform.Result finalResult,
Receiver next,
SerializationProperties params)
Create an uncommitted Serializer
|
| Modifier and Type | Method and Description |
|---|---|
void |
append(Item item,
Location locationId,
int copyNamespaces)
Append an arbitrary item (node or atomic value) to the output
|
void |
characters(java.lang.CharSequence chars,
Location locationId,
int properties)
Produce character output using the current Writer.
|
void |
close()
End of document
|
void |
comment(java.lang.CharSequence chars,
Location locationId,
int properties)
Output a comment
|
void |
endDocument()
Notify the end of a document node
|
void |
open()
Start of event stream
|
void |
processingInstruction(java.lang.String target,
java.lang.CharSequence data,
Location locationId,
int properties)
Processing Instruction
|
void |
startDocument(int properties)
Start of a document node.
|
void |
startElement(NodeName elemName,
SchemaType typeCode,
Location location,
int properties)
Output an element start tag.
|
attribute, endElement, getNamePool, getNextReceiver, namespace, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, usesTypeAnnotationsappend, decompose, flatten, getConfiguration, getErrorCodeForDecomposingFunctionItems, getPipelineConfiguration, getSystemId, handlesAppendpublic UncommittedSerializer(javax.xml.transform.Result finalResult,
Receiver next,
SerializationProperties params)
finalResult - the output destinationnext - the next receiver in the pipelineparams - the serialization properties including character mapspublic void open()
throws XPathException
ProxyReceiveropen in interface Receiveropen in class ProxyReceiverXPathException - if an error occurspublic void close()
throws XPathException
close in interface Receiverclose in class ProxyReceiverXPathException - if an error occurspublic void characters(java.lang.CharSequence chars,
Location locationId,
int properties)
throws XPathException
characters in interface Receivercharacters in class ProxyReceiverchars - The characterslocationId - provides information such as line number and system ID.properties - Bit significant value. The following bits are defined:
XPathException - if an error occurspublic void processingInstruction(java.lang.String target,
java.lang.CharSequence data,
Location locationId,
int properties)
throws XPathException
processingInstruction in interface ReceiverprocessingInstruction in class ProxyReceivertarget - The PI name. This must be a legal name (it will not be checked).data - The data portion of the processing instructionlocationId - provides information such as line number and system ID.properties - Additional information about the PI.XPathException - if an error occurspublic void comment(java.lang.CharSequence chars,
Location locationId,
int properties)
throws XPathException
comment in interface Receivercomment in class ProxyReceiverchars - The content of the commentlocationId - provides information such as line number and system ID.properties - Additional information about the comment.XPathException - if an error occurspublic void startElement(NodeName elemName, SchemaType typeCode, Location location, int properties) throws XPathException
startElement in interface ReceiverstartElement in class ProxyReceiverelemName - The element name (tag)typeCode - The type annotationlocation - Location of the instruction emitting this eventproperties - Bit field holding special properties of the elementXPathException - if an error occurspublic void startDocument(int properties)
throws XPathException
ProxyReceiverstartDocument in interface ReceiverstartDocument in class ProxyReceiverproperties - bit-significant integer indicating properties of the document node.
The definitions of the bits are in class ReceiverOptionsXPathException - if an error occurspublic void endDocument()
throws XPathException
ProxyReceiverendDocument in interface ReceiverendDocument in class ProxyReceiverXPathException - if an error occurspublic void append(Item item, Location locationId, int copyNamespaces) throws XPathException
append in interface Receiverappend in class ProxyReceiveritem - the item to be appendedlocationId - the location of the calling instruction, for diagnosticscopyNamespaces - if the item is an element node, this indicates whether its namespaces
need to be copied. Values are ReceiverOptions.ALL_NAMESPACES,
ReceiverOptions.LOCAL_NAMESPACES; the default (0) means
no namespacesXPathExceptionCopyright (c) 2004-2020 Saxonica Limited. All rights reserved.