org.jaxen.saxpath.base
final class Verifier extends Object
Method Summary | |
---|---|
static boolean | isXMLCombiningChar(char c)
Determine whether a specified character
is a combining character according to production 87
of the XML 1.0 specification.
|
static boolean | isXMLDigit(char c)
Determine whether a specified Unicode character
is a digit according to production 88 of the XML 1.0 specification.
|
static boolean | isXMLExtender(char c)
Determine whether a specified
character is an extender according to production 88 of the XML 1.0
specification.
|
static boolean | isXMLLetter(char c)
Determine whether a specified character
is a letter according to production 84 of the XML 1.0 specification.
|
static boolean | isXMLNCNameCharacter(char c)
This is a utility function for determining whether a specified
character is a name character according to production 4 of the
XML 1.0 specification.
|
static boolean | isXMLNCNameStartCharacter(char c)
This is a utility function for determining whether a specified
character is a legal name start character according to production 5
of the XML 1.0 specification. |
Parameters: c char
to check
Returns: boolean
true if it's a combining character,
false otherwise
Parameters: c char
to check for XML digit compliance
Returns: boolean
true if it's a digit, false otherwise
Parameters: c char
to check
Returns: true if it's an extender, false otherwise
Parameters: c char
to check for XML name compliance
Returns: String
true if it's a letter, false otherwise
Parameters: c char
to check for XML name compliance.
Returns: boolean
true if it's a name character,
false otherwise
Parameters: c char
to check for XML name start compliance
Returns: true if it's a name start character, false otherwise