Uses of Class
org.znerd.xmlenc.InvalidXMLException

Packages that use InvalidXMLException
Package
Description
Xmlenc, the fast XML output library.
  • Uses of InvalidXMLException in org.znerd.xmlenc

    Modifier and Type
    Method
    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 final void
    XMLChecker.checkName(char[] ch, int start, int length)
    Checks if the specified part of a character array matches the Name production.
    static final void
    XMLChecker.checkName(String s)
    Checks if the specified string matches the Name production.
    static final void
    XMLChecker.checkPubidLiteral(char[] ch, int start, int length)
    Checks if the specified part of a character array matches the PubidLiteral production.
    static final void
    XMLChecker.checkPubidLiteral(String s)
    Checks if the specified string matches the PubidLiteral production.
    static final 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 final void
    XMLChecker.checkSystemLiteral(char[] ch, int start, int length)
    Checks if the specified part of a character array matches the SystemLiteral production.
    static final void
    XMLChecker.checkSystemLiteral(String s)
    Checks if the specified string matches the SystemLiteral production.
    void
    XMLEventListener.comment(String text)
    Notification of a comment.
    final void
    XMLOutputter.comment(String text)
    Writes the specified comment.
    void
    XMLEventListener.dtd(String name, String publicID, String systemID)
    Notification of a document type declaration.
    final void
    XMLOutputter.dtd(String name, String publicID, String systemID)
    Writes a document type declaration.
    void
    XMLEventListener.pcdata(char[] ch, int start, int length)
    Notification of a PCDATA section (as a char array).
    void
    XMLEventListener.pcdata(String text)
    Notification of a PCDATA section (as a String).
    final void
    XMLOutputter.pcdata(char[] ch, int start, int length)
    Writes the specified character array as PCDATA.
    final void
    XMLOutputter.pcdata(String text)
    Writes the specified String as PCDATA.
    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.
    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
    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.
    void
    XMLEventListener.whitespace(char[] ch, int start, int length)
    Notification of ignorable whitespace (as a String).
    void
    XMLEventListener.whitespace(String whitespace)
    Notification of ignorable whitespace (as a String).
    final void
    XMLOutputter.whitespace(char[] ch, int start, int length)
    Writes text from the specified character array as ignorable whitespace.
    final void
    XMLOutputter.whitespace(String whitespace)
    Writes the specified ignorable whitespace.