Package org.apache.batik.xml
Class XMLCharacters
java.lang.Object
org.apache.batik.xml.XMLCharacters
- Direct Known Subclasses:
XMLUtilities
This class contains the definitions of the arrays used to find
the type of the characters found in an XML document.
- Version:
- $Id: XMLCharacters.java 1733416 2016-03-03 07:07:13Z gadams $
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int[]
The bit array representing an alphabetic character.static final int[]
The bit array representing a character compositing an XML name.static final int[]
The bit array representing the first character of an XML name.static final int[]
The bit array representing a character compositing an XML 1.1 name.static final int[]
The bit array representing the first character of an XML 1.1 name.static final int[]
The bit array representing the valid XML public ID characters.static final int[]
The bit array representing the valid XML version characters.static final int[]
The bit array representing a valid XML character in the unicode range [0-FFFF]. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
This class does not need to be instantiated. -
Method Summary
-
Field Details
-
NAME_FIRST_CHARACTER
public static final int[] NAME_FIRST_CHARACTERThe bit array representing the first character of an XML name. -
NAME11_FIRST_CHARACTER
public static final int[] NAME11_FIRST_CHARACTERThe bit array representing the first character of an XML 1.1 name. -
NAME_CHARACTER
public static final int[] NAME_CHARACTERThe bit array representing a character compositing an XML name. -
NAME11_CHARACTER
public static final int[] NAME11_CHARACTERThe bit array representing a character compositing an XML 1.1 name. -
XML_CHARACTER
public static final int[] XML_CHARACTERThe bit array representing a valid XML character in the unicode range [0-FFFF]. -
PUBLIC_ID_CHARACTER
public static final int[] PUBLIC_ID_CHARACTERThe bit array representing the valid XML public ID characters. -
VERSION_CHARACTER
public static final int[] VERSION_CHARACTERThe bit array representing the valid XML version characters. -
ALPHABETIC_CHARACTER
public static final int[] ALPHABETIC_CHARACTERThe bit array representing an alphabetic character.
-
-
Constructor Details
-
XMLCharacters
protected XMLCharacters()This class does not need to be instantiated.
-