org.apache.xml.utils
public class XMLCharacterRecognizer extends Object
UNKNOWN: internal
Method Summary | |
---|---|
static boolean | isWhiteSpace(char ch)
Returns whether the specified ch conforms to the XML 1.0 definition
of whitespace. |
static boolean | isWhiteSpace(char[] ch, int start, int length)
Tell if the string is whitespace.
|
static boolean | isWhiteSpace(StringBuffer buf)
Tell if the string is whitespace.
|
static boolean | isWhiteSpace(String s)
Tell if the string is whitespace.
|
S
for details.Parameters: ch Character to check as XML whitespace.
Returns: =true if ch is XML whitespace; otherwise =false.
Parameters: ch Character array to check as XML whitespace. start Start index of characters in the array length Number of characters in the array
Returns: True if the characters in the array are XML whitespace; otherwise, false.
Parameters: buf StringBuffer to check as XML whitespace.
Returns: True if characters in buffer are XML whitespace, false otherwise
Parameters: s String to check as XML whitespace.
Returns: True if characters in buffer are XML whitespace, false otherwise