Class FastInfosetDefaultHandler
- All Implemented Interfaces:
EncodingAlgorithmContentHandler,PrimitiveTypeContentHandler,ContentHandler,DTDHandler,EntityResolver,ErrorHandler,LexicalHandler
FastInfosetReader.
This class is available as a convenience for applications: it provides default implementations for all of the callbacks of the following:
Application writers can extend this class when they need to implement only part of an interface; parser writers can instantiate this class to provide default handlers when the application has not supplied its own.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbooleans(boolean[] b, int start, int length) Receive notification of character data as an array of boolean.voidbytes(byte[] b, int start, int length) Receive notification of character data as an array of byte.voidcomment(char[] ch, int start, int length) voiddoubles(double[] d, int start, int length) Receive notification of character data as an array of double.voidendCDATA()voidendDTD()voidvoidfloats(float[] f, int start, int length) Receive notification of character data as an array of float.voidints(int[] i, int start, int length) Receive notification of character data as an array of int.voidlongs(long[] l, int start, int length) Receive notification of character data as an array of long.voidReceive notification of encoding algorithm data as an object.voidReceive notification of encoding algorithm data as an array of byte.voidshorts(short[] s, int start, int length) Receive notification of character data as an array of short.voidvoidvoidstartEntity(String name) voiduuids(long[] msblsb, int start, int length) Receive notification of character data as an two array of UUID.Methods inherited from class org.xml.sax.helpers.DefaultHandler
characters, endDocument, endElement, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping, unparsedEntityDecl, warning
-
Constructor Details
-
FastInfosetDefaultHandler
public FastInfosetDefaultHandler()
-
-
Method Details
-
comment
- Specified by:
commentin interfaceLexicalHandler- Throws:
SAXException
-
startCDATA
- Specified by:
startCDATAin interfaceLexicalHandler- Throws:
SAXException
-
endCDATA
- Specified by:
endCDATAin interfaceLexicalHandler- Throws:
SAXException
-
startDTD
- Specified by:
startDTDin interfaceLexicalHandler- Throws:
SAXException
-
endDTD
- Specified by:
endDTDin interfaceLexicalHandler- Throws:
SAXException
-
startEntity
- Specified by:
startEntityin interfaceLexicalHandler- Throws:
SAXException
-
endEntity
- Specified by:
endEntityin interfaceLexicalHandler- Throws:
SAXException
-
octets
Description copied from interface:EncodingAlgorithmContentHandlerReceive notification of encoding algorithm data as an array of byte.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing encoding algorithm data.
The Parser will call the method of this interface to report each encoding algorithm data. Parsers MUST return all contiguous characters in a single chunk
Parsers may return all contiguous bytes in a single chunk, or they may split it into several chunks providing that the length of each chunk is of the required length to successfully apply the encoding algorithm to the chunk.
- Specified by:
octetsin interfaceEncodingAlgorithmContentHandler- Parameters:
URI- the URI of the encoding algorithmalgorithm- the encoding algorithm indexb- the array of bytestart- the start position in the arraylength- the number of byte to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception- See Also:
-
object
Description copied from interface:EncodingAlgorithmContentHandlerReceive notification of encoding algorithm data as an object.Such notifications will occur for a Fast Infoset SAX parser when processing encoding algorithm data that is converted from an array of byte to an object more suitable for processing.
- Specified by:
objectin interfaceEncodingAlgorithmContentHandler- Parameters:
URI- the URI of the encoding algorithmalgorithm- the encoding algorithm indexo- the encoding algorithm object- Throws:
SAXException- any SAX exception, possibly wrapping another exception- See Also:
-
booleans
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of boolean.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "boolean" encoding algorithm, see subclause 10.7
.
- Specified by:
booleansin interfacePrimitiveTypeContentHandler- Parameters:
b- the array of booleanstart- the start position in the arraylength- the number of boolean to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
bytes
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of byte.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "base64" encoding algorithm, see subclause 10.3, or the "hexadecimal" encoding algorithm, see subclause 10.2.
Such a notification may occur for binary data that would normally require base 64 encoding and reported as character data using the
charactersmethod.
- Specified by:
bytesin interfacePrimitiveTypeContentHandler- Parameters:
b- the array of bytestart- the start position in the arraylength- the number of byte to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
shorts
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of short.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "short" encoding algorithm, see subclause 10.4
.
- Specified by:
shortsin interfacePrimitiveTypeContentHandler- Parameters:
s- the array of shortstart- the start position in the arraylength- the number of short to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
ints
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of int.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "int" encoding algorithm, see subclause 10.5
.
- Specified by:
intsin interfacePrimitiveTypeContentHandler- Parameters:
i- the array of intstart- the start position in the arraylength- the number of int to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
longs
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of long.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "long" encoding algorithm, see subclause 10.6
.
- Specified by:
longsin interfacePrimitiveTypeContentHandler- Parameters:
l- the array of longstart- the start position in the arraylength- the number of long to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
floats
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of float.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "float" encoding algorithm, see subclause 10.8
.
- Specified by:
floatsin interfacePrimitiveTypeContentHandler- Parameters:
f- the array of floatstart- the start position in the arraylength- the number of float to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
doubles
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an array of double.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "double" encoding algorithm, see subclause 10.9
.
- Specified by:
doublesin interfacePrimitiveTypeContentHandler- Parameters:
d- the array of doublestart- the start position in the arraylength- the number of double to read from the array- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-
uuids
Description copied from interface:PrimitiveTypeContentHandlerReceive notification of character data as an two array of UUID.The application must not attempt to read from the array outside of the specified range.
Such notifications will occur for a Fast Infoset SAX parser when processing data encoded using the "uuid" encoding algorithm, see subclause 10.10
.
- Specified by:
uuidsin interfacePrimitiveTypeContentHandler- Parameters:
msblsb- the array of long containing pairs of most signficant bits and least significant bits of the UUIDsstart- the start position in the arraylength- the number of long to read from the array. This will be twice the number of UUIDs, which are pairs of two long values- Throws:
SAXException- any SAX exception, possibly wrapping another exception
-