Package | Description |
---|---|
org.znerd.xmlenc |
XMLenc, the fast XML output library.
|
Modifier and Type | Method and Description |
---|---|
void |
XMLEventListener.attribute(String name,
String value)
Adds an attribute to the current element.
|
void |
XMLEventListener.cdata(String text)
Notification of a CDATA section.
|
static void |
XMLChecker.checkName(char[] ch,
int start,
int length)
Checks if the specified part of a character array matches the
Name production.
|
static void |
XMLChecker.checkName(String s)
Checks if the specified string matches the Name production.
|
static void |
XMLChecker.checkPubidLiteral(char[] ch,
int start,
int length)
Checks if the specified part of a character array matches the
PubidLiteral production.
|
static void |
XMLChecker.checkPubidLiteral(String s)
Checks if the specified string matches the PubidLiteral
production.
|
static void |
XMLChecker.checkS(char[] ch,
int start,
int length)
Checks if the specified part of a character array matches the S
(white space) production.
|
static void |
XMLChecker.checkSystemLiteral(char[] ch,
int start,
int length)
Checks if the specified part of a character array matches the
SystemLiteral production.
|
static void |
XMLChecker.checkSystemLiteral(String s)
Checks if the specified string matches the SystemLiteral
production.
|
void |
XMLOutputter.comment(String text)
Writes the specified comment.
|
void |
XMLEventListener.comment(String text)
Notification of a comment.
|
void |
XMLOutputter.dtd(String name,
String publicID,
String systemID)
Writes a document type declaration.
|
void |
XMLEventListener.dtd(String name,
String publicID,
String systemID)
Notification of a document type declaration.
|
void |
XMLOutputter.pcdata(char[] ch,
int start,
int length)
Writes the specified character array as PCDATA.
|
void |
XMLEventListener.pcdata(char[] ch,
int start,
int length)
Notification of a PCDATA section (as a
char array). |
void |
XMLOutputter.pcdata(String text)
Writes the specified
String as PCDATA. |
void |
XMLEventListener.pcdata(String text)
Notification of a PCDATA section (as a
String ). |
void |
XMLEventListener.pi(String target,
String instruction)
Notification of a processing instruction.
|
void |
XMLEventListener.startTag(String type)
Notification of an element start tag.
|
void |
XMLEncoder.text(Writer out,
char c)
Deprecated.
Deprecated since xmlenc 0.51.
Use the text method
XMLEncoder.text(Writer, char, boolean) instead. |
void |
XMLEncoder.text(Writer out,
char[] ch,
int start,
int length,
boolean escapeAmpersands)
Writes text from the specified character array.
|
void |
XMLEncoder.text(Writer out,
char c,
boolean escapeAmpersands)
Writes the specified character.
|
void |
XMLEncoder.text(Writer out,
String text,
boolean escapeAmpersands)
Writes the specified text.
|
void |
XMLOutputter.whitespace(char[] ch,
int start,
int length)
Writes text from the specified character array as ignorable whitespace.
|
void |
XMLEventListener.whitespace(char[] ch,
int start,
int length)
Notification of ignorable whitespace (as a
String ). |
void |
XMLOutputter.whitespace(String whitespace)
Writes the specified ignorable whitespace.
|
void |
XMLEventListener.whitespace(String whitespace)
Notification of ignorable whitespace (as a
String ). |
void |
XMLEncoder.whitespace(Writer out,
char[] ch,
int start,
int length)
Writes whitespace from the specified character array.
|
void |
XMLEncoder.whitespace(Writer out,
String s)
Writes the specified whitespace string.
|
Copyright © 2003–2013. All rights reserved.