Method Summary |
|
public static char | highSurrogate(int c) |
public static boolean | isContent(int c) Returns true if the specified character can be considered content. |
public static boolean | isHighSurrogate(int c) |
public static boolean | isInvalid(int c) Returns true if the specified character is invalid. |
public static boolean | isLowSurrogate(int c) |
public static boolean | isMarkup(int c) Returns true if the specified character can be considered markup. |
public static boolean | isNCName(int c) Returns true if the specified character is a valid NCName
character as defined by production [5] in Namespaces in XML
recommendation. |
public static boolean | isNCNameStart(int c) Returns true if the specified character is a valid NCName start
character as defined by production [4] in Namespaces in XML
recommendation. |
public static boolean | isName(int c) Returns true if the specified character is a valid name
character as defined by production [4] in the XML 1.0
specification. |
public static boolean | isNameStart(int c) Returns true if the specified character is a valid name start
character as defined by production [5] in the XML 1.0
specification. |
public static boolean | isPubid(int c) Returns true if the specified character is a valid Pubid
character as defined by production [13] in the XML 1.0
specification. |
public static boolean | isSpace(int c) Returns true if the specified character is a space character
as defined by production [3] in the XML 1.0 specification. |
public static boolean | isSupplemental(int c) Returns true if the specified character is a supplemental character. |
public static boolean | isValid(int c) Returns true if the specified character is valid. |
public static boolean | isValidIANAEncoding(String ianaEncoding) Returns true if the encoding name is a valid IANA encoding. |
public static boolean | isValidJavaEncoding(String javaEncoding) Returns true if the encoding name is a valid Java encoding. |
public static boolean | isValidNCName(String ncName) |
public static boolean | isValidName(String name) |
public static boolean | isValidNmtoken(String nmtoken) |
public static boolean | isXML11Space(int c) Returns true if the specified character is a space character
as amdended in the XML 1.1 specification. |
public static char | lowSurrogate(int c) |
public static int | supplemental(char h, char l) Returns true the supplemental character corresponding to the given
surrogates. |