org.apache.batik.css.parser
public class ScannerUtilities extends Object
| Field Summary | |
|---|---|
| protected static int[] | HEXADECIMAL
The set of the valid hexadecimal characters. |
| protected static int[] | IDENTIFIER_START
The set of the valid identifier start characters. |
| protected static int[] | NAME
The set of the valid name characters. |
| protected static int[] | STRING
The set of the valid string characters. |
| protected static int[] | URI
The set of the valid uri characters. |
| Constructor Summary | |
|---|---|
| protected | ScannerUtilities()
This class does not need to be instantiated. |
| Method Summary | |
|---|---|
| static boolean | isCSSHexadecimalCharacter(char c)
Tests whether the given character is a valid hexadecimal character. |
| static boolean | isCSSIdentifierStartCharacter(char c)
Tests whether the given character is a valid identifier start character. |
| static boolean | isCSSNameCharacter(char c)
Tests whether the given character is a valid name character. |
| static boolean | isCSSSpace(char c)
Tests whether the given character is a valid space. |
| static boolean | isCSSStringCharacter(char c)
Tests whether the given character is a valid string character. |
| static boolean | isCSSURICharacter(char c)
Tests whether the given character is a valid URI character. |