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:
 java.io.Serializable,Parser
public class DigestingParser extends ParserDecorator
- See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDigestingParser.DigesterInterface for digester.static interfaceDigestingParser.EncoderEncodes byte array from a MessageDigest to String 
- 
Constructor Summary
Constructors Constructor Description DigestingParser(Parser parser, DigestingParser.Digester digester)Creates a decorator for the given parser. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidparse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)Delegates the method call to the decorated parser.- 
Methods inherited from class org.apache.tika.parser.ParserDecorator
getDecorationName, getSupportedTypes, getWrappedParser, withFallbacks, withoutTypes, withTypes 
- 
Methods inherited from class org.apache.tika.parser.AbstractParser
parse 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
DigestingParser
public DigestingParser(Parser parser, DigestingParser.Digester digester)
Creates a decorator for the given parser.- Parameters:
 parser- the parser instance to be decorated
 
 - 
 
- 
Method Detail
- 
parse
public void parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context) throws java.io.IOException, org.xml.sax.SAXException, TikaExceptionDescription 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:
 java.io.IOException- if the document stream could not be readorg.xml.sax.SAXException- if the SAX events could not be processedTikaException- if the document could not be parsed
 
 - 
 
 -