Package org.apache.ws.commons.serialize
Interface XMLWriter
-
- All Superinterfaces:
org.xml.sax.ContentHandler
- All Known Implementing Classes:
CharSetXMLWriter,OrderedAttributeXMLWriter,PassThroughXMLWriter,XMLWriterImpl
public interface XMLWriter extends org.xml.sax.ContentHandlerA simple serializer for XML documents, which is writing to an instance ofWriter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanEncode(char pChar)Returns whether the XMLWriter can encode the charactercwithout an escape sequence like &#ddd;.java.lang.StringgetEncoding()Returns the writers encoding.java.lang.StringgetIndentString()Returns the string being used to indent an XML element by one level.java.lang.StringgetLineFeed()Returns the line terminator.java.io.WritergetWriter()Returns the targetWriter.booleanisDeclarating()Returns, whether an XML declaration is being generated.booleanisFlushing()Returns, whether the methodContentHandler.endDocument()should do a flush on the target stream.booleanisIndenting()Returns, whether theXMLWriteris indenting (pretty printing).voidsetDeclarating(boolean pDeclarating)Sets, whether an XML declaration is being generated.voidsetEncoding(java.lang.String pEncoding)Sets the writers encoding.voidsetFlushing(boolean pFlushing)Sets, whether the methodContentHandler.endDocument()should do a flush on the target stream.voidsetIndenting(boolean pIndenting)Returns, whether theXMLWriteris indenting (pretty printing).voidsetIndentString(java.lang.String pIndentString)Sets the string being used to indent an XML element by one level.voidsetLineFeed(java.lang.String pLineFeed)Sets the line terminator.voidsetWriter(java.io.Writer pWriter)Sets the targetWriter.
-
-
-
Method Detail
-
setEncoding
void setEncoding(java.lang.String pEncoding)
Sets the writers encoding.- Parameters:
pEncoding- Writers encoding, by default null, in which case UTF-8 is being used.
-
getEncoding
java.lang.String getEncoding()
Returns the writers encoding.- Returns:
- Writers encoding, by default null, in which case UTF-8 is being used.
-
setDeclarating
void setDeclarating(boolean pDeclarating)
Sets, whether an XML declaration is being generated.- Parameters:
pDeclarating- Whether an XML declaration is generated. Defaults to false.
-
isDeclarating
boolean isDeclarating()
Returns, whether an XML declaration is being generated.- Returns:
- Whether an XML declaration is generated. Defaults to false.
-
setWriter
void setWriter(java.io.Writer pWriter)
Sets the targetWriter. This is typically an instance ofBufferedWriter, which is connected to an instance ofOutputStreamWriterwith an encoding matching the XML documents encoding.- Parameters:
pWriter- The target writer.
-
getWriter
java.io.Writer getWriter()
Returns the targetWriter. This is typically an instance ofBufferedWriter, which is connected to an instance ofOutputStreamWriterwith an encoding matching the XML documents encoding.- Returns:
- The target writer.
-
canEncode
boolean canEncode(char pChar)
Returns whether the XMLWriter can encode the character
cwithout an escape sequence like &#ddd;.- Parameters:
pChar- The character being checked for escaping.- Returns:
- Whether to encode the character.
-
setIndenting
void setIndenting(boolean pIndenting)
Returns, whether theXMLWriteris indenting (pretty printing). If you want indenting, you should consider to invoke the methodssetIndentString(java.lang.String)andsetLineFeed(java.lang.String)as well.- Parameters:
pIndenting- Whether indentation is enabled. Defaults to false.
-
isIndenting
boolean isIndenting()
Returns, whether theXMLWriteris indenting (pretty printing). If you want indenting, you should consider to invoke the methodssetIndentString(java.lang.String)andsetLineFeed(java.lang.String)as well.- Returns:
- Whether indentation is enabled. Defaults to false.
-
setIndentString
void setIndentString(java.lang.String pIndentString)
Sets the string being used to indent an XML element by one level. Ignored, if indentation is disabled.- Parameters:
pIndentString- The indentation string, by default " " (two blanks).
-
getIndentString
java.lang.String getIndentString()
Returns the string being used to indent an XML element by one level. Ignored, if indentation is disabled.- Returns:
- The indentation string, by default " " (two blanks).
-
setLineFeed
void setLineFeed(java.lang.String pLineFeed)
Sets the line terminator. Ignored, if indentation is disabled.- Parameters:
pLineFeed- The line terminator, by default "\n" (Line Feed). You might prefer "\r\n" (Carriage Return, Line Feed), which is the default on Windows and related operating systems.
-
getLineFeed
java.lang.String getLineFeed()
Returns the line terminator. Ignored, if indentation is disabled.- Returns:
- The line terminator, by default "\n" (Line Feed). You might prefer "\r\n" (Carriage Return, Line Feed), which is the default on Windows and related operating systems.
-
setFlushing
void setFlushing(boolean pFlushing)
Sets, whether the methodContentHandler.endDocument()should do a flush on the target stream.- Parameters:
pFlushing- True, if a flush should be done. Defaults to false.
-
isFlushing
boolean isFlushing()
Returns, whether the methodContentHandler.endDocument()should do a flush on the target stream.- Returns:
- True, if a flush should be done. Defaults to false.
-
-