Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public int | peekChar()
Overrides com. Returns the next character on the input. |
protected int | scanChar(XMLScanner.
The type of the name (element or attribute) ntOverrides com. Returns the next character on the input. |
protected int | Returns: Returns the next character on the input, if known. This value may be -1 but this does note designate end of file.The content structure to fill. content)Overrides com. Scans a range of parsed character data, setting the fields of the XMLString structure, appropriately. |
protected boolean | Returns: Returns true if there is more data to scan, false otherwise.The string that signifies the end of the character
data to be scanned. delimiter, XMLStringBuffer The data structure to fill. buffer, int the size limit of the data to be scanned chunkLimit)Overrides com. Scans a range of character data up to the specicied delimiter, setting the fields of the XMLString structure, appropriately. |
protected int | Returns: Returns the next character on the input, if known. This value may be -1 but this does note designate end of file.The quote character that signifies the end of the
attribute value data. quote, XMLString The content structure to fill. content, boolean a flag indicating whether the content is a Namespace URI isNSURI)Overrides com. Scans a range of attribute value data, setting the fields of the XMLString structure, appropriately. |
protected String | scanName(XMLScanner.
The type of the name (element or attribute) ntOverrides com. Returns a string matching the Name production appearing immediately on the input as a symbol, or null if no Name string is present. |
protected String | scanNCName()
Returns a string matching the NCName production appearing immediately on the input as a symbol, or null if no NCName string is present. |
protected String | scanNmtoken()
Overrides com. Returns a string matching the NMTOKEN production appearing immediately on the input as a symbol, or null if NMTOKEN Name string is present. |
protected boolean | Returns: Returns true if a qualified name appeared immediately on the input and was scanned, false otherwise.The qualified name structure to fill. qname, XMLScanner.The type of the name (element or attribute) ntOverrides com. Scans a qualified name from the input, setting the fields of the QName structure appropriately. |
protected boolean | Returns: Returns true if the character was skipped.The character to skip. c, XMLScanner.The type of the name (element or attribute) ntOverrides com. Skips a character appearing immediately on the input. |
protected boolean | Returns: Returns true if at least one space character was skipped.Overrides com. Skips space characters appearing immediately on the input. |
protected boolean | Returns: Returns true if the string was skipped.The string to skip. s)Overrides com. Skips the specified string appearing immediately on the input. |
XML11EntityScanner | back to summary |
---|---|
public XML11EntityScanner() Default constructor. |
peekChar | back to summary |
---|---|
public int peekChar() throws IOException Overrides com. Returns the next character on the input. Note The character is not consumed.
|
scanChar | back to summary |
---|---|
protected int scanChar(XMLScanner. Overrides com. Returns the next character on the input. Note The character is consumed.
|
scanContent | back to summary |
---|---|
protected int scanContent(XMLString content) throws IOException Overrides com. Scans a range of parsed character data, setting the fields of the XMLString structure, appropriately. Note The characters are consumed. Note This method does not guarantee to return the longest run of parsed character data. This method may return before markup due to reaching the end of the input buffer or any other reason. Note The fields contained in the XMLString structure are not guaranteed to remain valid upon subsequent calls to the entity scanner. Therefore, the caller is responsible for immediately using the returned character data or making a copy of the character data.
|
scanData | back to summary |
---|---|
protected boolean scanData(String delimiter, XMLStringBuffer buffer, int chunkLimit) throws IOException Overrides com. Scans a range of character data up to the specicied delimiter, setting the fields of the XMLString structure, appropriately. Note The characters are consumed. Note This assumes that the internal buffer is at least the same size, or bigger, than the length of the delimiter and that the delimiter contains at least one character. Note This method does not guarantee to return the longest run of character data. This method may return before the delimiter due to reaching the end of the input buffer or any other reason. Note The fields contained in the XMLString structure are not guaranteed to remain valid upon subsequent calls to the entity scanner. Therefore, the caller is responsible for immediately using the returned character data or making a copy of the character data.
|
scanLiteral | back to summary |
---|---|
protected int scanLiteral(int quote, XMLString content, boolean isNSURI) throws IOException Overrides com. Scans a range of attribute value data, setting the fields of the XMLString structure, appropriately. Note The characters are consumed. Note This method does not guarantee to return the longest run of attribute value data. This method may return before the quote character due to reaching the end of the input buffer or any other reason. Note The fields contained in the XMLString structure are not guaranteed to remain valid upon subsequent calls to the entity scanner. Therefore, the caller is responsible for immediately using the returned character data or making a copy of the character data.
|
scanName | back to summary |
---|---|
protected String scanName(XMLScanner. Overrides com. Returns a string matching the Name production appearing immediately on the input as a symbol, or null if no Name string is present. Note The Name characters are consumed. Note The string returned must be a symbol. The SymbolTable can be used for this purpose.
|
scanNCName | back to summary |
---|---|
protected String scanNCName() throws IOException Returns a string matching the NCName production appearing immediately on the input as a symbol, or null if no NCName string is present. Note The NCName characters are consumed. Note The string returned must be a symbol. The SymbolTable can be used for this purpose.
|
scanNmtoken | back to summary |
---|---|
protected String scanNmtoken() throws IOException Overrides com. Returns a string matching the NMTOKEN production appearing immediately on the input as a symbol, or null if NMTOKEN Name string is present. Note The NMTOKEN characters are consumed. Note The string returned must be a symbol. The SymbolTable can be used for this purpose.
|
scanQName | back to summary |
---|---|
protected boolean scanQName(QName qname, XMLScanner. Overrides com. Scans a qualified name from the input, setting the fields of the QName structure appropriately. Note The qualified name characters are consumed. Note The strings used to set the values of the QName structure must be symbols. The SymbolTable can be used for this purpose.
|
skipChar | back to summary |
---|---|
protected boolean skipChar(int c, XMLScanner. Overrides com. Skips a character appearing immediately on the input. Note The character is consumed only if it matches the specified character.
|
skipSpaces | back to summary |
---|---|
protected boolean skipSpaces() throws IOException Overrides com. Skips space characters appearing immediately on the input. Note The characters are consumed only if they are space characters.
|
skipString | back to summary |
---|---|
protected boolean skipString(String s) throws IOException Overrides com. Skips the specified string appearing immediately on the input. Note The characters are consumed only if they are space characters.
|