Method Summary |
|
final protected static StringBuffer | appendAsHex(StringBuffer sb, char c) |
final public static void | checkAttributeName(String name, Locator loc) Checks whether an attribute's name is valid. |
final public static void | checkCData(String data, Locator loc) Checks whether a CDATA is valid. |
final public static void | checkCharacterData(String text, Locator loc) Checks whether a text is valid. |
final public static void | checkCommentData(String data, Locator loc) Checks whether a comment data is valid. |
final public static void | checkElementName(String name, Locator loc) Checks whether an element's name is valid. |
final public static void | checkNamespacePrefix(String prefix, Locator loc) Checks whether the prefix of a namespace is valid. |
final public static void | checkNamespaceURI(String uri, Locator loc) Checks whether the URI of a namespace is valid. |
final public static void | checkPITarget(String target, Locator loc) Checks whether a processing instruction target is valid. |
public static void | checkXMLName(String name, Locator loc) Checks whether a name is valid. |
public static boolean | isXMLCharacter(char c) Checks whether a character is valid. |
public static boolean | isXMLCombiningChar(char c) Checks whether a character is a combining character according to
production 87 of the XML 1.0 specification. |
public static boolean | isXMLDigit(char c)
Checks whether a character is a digit according to
production 88 of the XML 1.0 specification. |
public static boolean | isXMLExtender(char c) Checks whether a character is an extender according to
production 88 of the XML 1.0 specification. |
public static boolean | isXMLLetter(char c) Checks whether a character is a letter. |
public static boolean | isXMLLetterOrDigit(char c) Checks whether a character is a letter or digit. |
public static boolean | isXMLNameCharacter(char c) Checks whether a character can be part of a name. |
public static boolean | isXMLNameStartCharacter(char c) Checks whether a character can be the first character of a name. |