|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jaxen.saxpath.base.Verifier
final class Verifier
A utility class to handle well-formedness checks on names.
Constructor Summary | |
---|---|
Verifier()
|
Method Summary | |
---|---|
(package private) static boolean |
isXMLCombiningChar(char c)
Determine whether a specified character is a combining character according to production 87 of the XML 1.0 specification. |
(package private) static boolean |
isXMLDigit(char c)
Determine whether a specified Unicode character is a digit according to production 88 of the XML 1.0 specification. |
(package private) static boolean |
isXMLExtender(char c)
Determine whether a specified character is an extender according to production 88 of the XML 1.0 specification. |
(package private) static boolean |
isXMLLetter(char c)
Determine whether a specified character is a letter according to production 84 of the XML 1.0 specification. |
(package private) 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. |
(package private) 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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
Verifier()
Method Detail |
---|
static boolean isXMLNCNameCharacter(char c)
c
- char
to check for XML name compliance.
boolean
true if it's a name character,
false otherwisestatic boolean isXMLNCNameStartCharacter(char c)
c
- char
to check for XML name start compliance
static boolean isXMLLetter(char c)
c
- char
to check for XML name compliance
String
true if it's a letter, false otherwisestatic boolean isXMLCombiningChar(char c)
c
- char
to check
boolean
true if it's a combining character,
false otherwisestatic boolean isXMLExtender(char c)
c
- char
to check
static boolean isXMLDigit(char c)
c
- char
to check for XML digit compliance
boolean
true if it's a digit, false otherwise
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |