Package org.apache.tika.parser
Class DigestingParser
java.lang.Object
org.apache.tika.parser.AbstractParser
org.apache.tika.parser.ParserDecorator
org.apache.tika.parser.DigestingParser
- All Implemented Interfaces:
Serializable,Parser
Deprecated.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceDeprecated.This version of the Apache Tika library is deprecated.static interfaceDeprecated.This version of the Apache Tika library is deprecated. -
Constructor Summary
ConstructorsConstructorDescriptionDigestingParser(Parser parser, DigestingParser.Digester digester) Deprecated.Creates a decorator for the given parser. -
Method Summary
Modifier and TypeMethodDescriptionvoidparse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) Deprecated.Delegates the method call to the decorated parser.Methods inherited from class org.apache.tika.parser.ParserDecorator
getDecorationName, getSupportedTypes, getWrappedParser, withFallbacks, withoutTypes, withTypesMethods inherited from class org.apache.tika.parser.AbstractParser
parse
-
Constructor Details
-
DigestingParser
Deprecated.Creates a decorator for the given parser.- Parameters:
parser- the parser instance to be decorated
-
-
Method Details
-
parse
public void parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) throws IOException, SAXException, TikaException Deprecated.Description copied from class:ParserDecoratorDelegates the method call to the decorated parser. Subclasses should override this method (and usesuper.parse()to invoke the decorated parser) to implement extra decoration.- Specified by:
parsein interfaceParser- Overrides:
parsein classParserDecorator- Parameters:
stream- the document stream (input)handler- handler for the XHTML SAX events (output)metadata- document metadata (input and output)context- parse context- Throws:
IOException- if the document stream could not be readSAXException- if the SAX events could not be processedTikaException- if the document could not be parsed
-