public class AutoDetectParser extends CompositeParser
| Constructor and Description | 
|---|
AutoDetectParser()
Creates an auto-detecting parser instance using the default Tika
 configuration. 
 | 
AutoDetectParser(Detector detector)  | 
AutoDetectParser(Detector detector,
                Parser... parsers)  | 
AutoDetectParser(Parser... parsers)
Creates an auto-detecting parser instance using the specified set of parser. 
 | 
AutoDetectParser(TikaConfig config)  | 
| Modifier and Type | Method and Description | 
|---|---|
Detector | 
getDetector()
Returns the type detector used by this parser to auto-detect the type
 of a document. 
 | 
void | 
parse(java.io.InputStream stream,
     org.xml.sax.ContentHandler handler,
     Metadata metadata)
Calls the
  
Parser.parse(InputStream, ContentHandler, Metadata, ParseContext)
 method with an empty ParseContext. | 
void | 
parse(java.io.InputStream stream,
     org.xml.sax.ContentHandler handler,
     Metadata metadata,
     ParseContext context)
Delegates the call to the matching component parser. 
 | 
void | 
setDetector(Detector detector)
Sets the type detector used by this parser to auto-detect the type
 of a document. 
 | 
findDuplicateParsers, getAllComponentParsers, getFallback, getMediaTypeRegistry, getParsers, getParsers, getSupportedTypes, setFallback, setMediaTypeRegistry, setParserspublic AutoDetectParser()
public AutoDetectParser(Detector detector)
public AutoDetectParser(Parser... parsers)
parsers - public AutoDetectParser(TikaConfig config)
public Detector getDetector()
public void setDetector(Detector detector)
detector - type detectorpublic void parse(java.io.InputStream stream,
                  org.xml.sax.ContentHandler handler,
                  Metadata metadata,
                  ParseContext context)
           throws java.io.IOException,
                  org.xml.sax.SAXException,
                  TikaException
CompositeParser
 Potential RuntimeExceptions, IOExceptions and
 SAXExceptions unrelated to the given input stream and content
 handler are automatically wrapped into TikaExceptions to better
 honor the Parser contract.
parse in interface Parserparse in class CompositeParserstream - the document stream (input)handler - handler for the XHTML SAX events (output)metadata - document metadata (input and output)context - parse contextjava.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 parsedpublic void parse(java.io.InputStream stream,
                  org.xml.sax.ContentHandler handler,
                  Metadata metadata)
           throws java.io.IOException,
                  org.xml.sax.SAXException,
                  TikaException
AbstractParserParser.parse(InputStream, ContentHandler, Metadata, ParseContext)
 method with an empty ParseContext. This method exists as a
 leftover from Tika 0.x when the three-argument parse() method still
 existed in the Parser interface. No new code should call this
 method anymore, it's only here for backwards compatibility.parse in class AbstractParserjava.io.IOExceptionorg.xml.sax.SAXExceptionTikaException"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"