Uses of Class
org.apache.tika.parser.AbstractParser
-
Packages that use AbstractParser Package Description org.apache.tika.fork Forked parser.org.apache.tika.parser Tika parsers.org.apache.tika.parser.external External parser process.org.apache.tika.parser.external2 org.apache.tika.parser.multiple -
-
Uses of AbstractParser in org.apache.tika.fork
Subclasses of AbstractParser in org.apache.tika.fork Modifier and Type Class Description classForkParser -
Uses of AbstractParser in org.apache.tika.parser
Subclasses of AbstractParser in org.apache.tika.parser Modifier and Type Class Description classAbstractEncodingDetectorParserAbstract base class for parsers that use the AutoDetectReader and need to use theEncodingDetectorconfigured byTikaConfigclassAbstractExternalProcessParserAbstract base class for parsers that call external processes.classAutoDetectParserclassCompositeParserComposite parser that delegates parsing tasks to a component parser based on the declared content type of the incoming document.classCryptoParserDecrypts the incoming document stream and delegates further parsing to another parser instance.classDefaultParserA composite parser based on all theParserimplementations available through theservice provider mechanism.classDelegatingParserBase class for parser implementations that want to delegate parts of the task of parsing an input document to another parser.classDigestingParserclassEmptyParserDummy parser that always produces an empty XHTML document without even attempting to parse the given document stream.classErrorParserDummy parser that always throws aTikaExceptionwithout even attempting to parse the given document stream.classNetworkParserclassParserDecoratorDecorator base class for theParserinterface.classParserPostProcessorParser decorator that post-processes the results from a decorated parser.classRecursiveParserWrapperThis is a helper class that wraps a parser in a recursive handler.classRegexCaptureParserclassStatefulParserThe RecursiveParserWrapper wraps the parser sent into the parsecontext and then uses that parser to store state (among many other things). -
Uses of AbstractParser in org.apache.tika.parser.external
Subclasses of AbstractParser in org.apache.tika.parser.external Modifier and Type Class Description classCompositeExternalParserA Composite Parser that wraps up all the available External Parsers, and provides an easy way to access them.classExternalParserParser that uses an external program (like catdoc or pdf2txt) to extract text content and metadata from a given document. -
Uses of AbstractParser in org.apache.tika.parser.external2
Subclasses of AbstractParser in org.apache.tika.parser.external2 Modifier and Type Class Description classExternalParserThis is a next generation external parser that uses some of the more recent additions to Tika. -
Uses of AbstractParser in org.apache.tika.parser.multiple
Subclasses of AbstractParser in org.apache.tika.parser.multiple Modifier and Type Class Description classAbstractMultipleParserAbstract base class for parser wrappers which may / will process a given stream multiple times, merging the results of the various parsers used.classFallbackParserTries multiple parsers in turn, until one succeeds.classSupplementingParserRuns the input stream through all available parsers, merging the metadata from them based on theAbstractMultipleParser.MetadataPolicychosen.
-