public class DelegatingParser extends AbstractParser
Parser
class as
the key.Constructor and Description |
---|
DelegatingParser() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<MediaType> |
getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used
with the given parse context.
|
void |
parse(java.io.InputStream stream,
org.xml.sax.ContentHandler handler,
Metadata metadata,
ParseContext context)
Looks up the delegate parser from the parsing context and
delegates the parse operation to it.
|
parse
public java.util.Set<MediaType> getSupportedTypes(ParseContext context)
Parser
context
- parse contextpublic void parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context) throws org.xml.sax.SAXException, java.io.IOException, TikaException
Subclasses should override this method to parse the top level structure of the given document stream. Parsed sub-streams can be passed to this base class method to be parsed by the configured delegate parser.
stream
- the document stream (input)handler
- handler for the XHTML SAX events (output)metadata
- document metadata (input and output)context
- parse contextorg.xml.sax.SAXException
- if the SAX events could not be processedjava.io.IOException
- if the document stream could not be readTikaException
- if the document could not be parsedCopyright © 2010 - 2020 Adobe. All Rights Reserved