Uses of Interface
org.apache.tika.parser.Parser

Packages that use Parser
org.apache.tika Apache Tika. 
org.apache.tika.config Tika configuration tools. 
org.apache.tika.extractor Extraction of component documents. 
org.apache.tika.fork Forked parser. 
org.apache.tika.parser Tika parsers. 
org.apache.tika.parser.external External parser process. 
 

Uses of Parser in org.apache.tika
 

Methods in org.apache.tika that return Parser
 Parser Tika.getParser()
          Returns the parser instance used by this facade.
 

Constructors in org.apache.tika with parameters of type Parser
Tika(Detector detector, Parser parser)
          Creates a Tika facade using the given detector and parser instances.
 

Uses of Parser in org.apache.tika.config
 

Methods in org.apache.tika.config that return Parser
 Parser TikaConfig.getParser()
          Returns the configured parser instance.
 Parser TikaConfig.getParser(MediaType mimeType)
          Deprecated. Use the TikaConfig.getParser() method instead
 

Uses of Parser in org.apache.tika.extractor
 

Constructors in org.apache.tika.extractor with parameters of type Parser
ParserContainerExtractor(Parser parser, Detector detector)
           
 

Uses of Parser in org.apache.tika.fork
 

Classes in org.apache.tika.fork that implement Parser
 class ForkParser
           
 

Constructors in org.apache.tika.fork with parameters of type Parser
ForkParser(ClassLoader loader, Parser parser)
           
 

Uses of Parser in org.apache.tika.parser
 

Classes in org.apache.tika.parser that implement Parser
 class AbstractParser
          Abstract base class for new parsers.
 class AutoDetectParser
           
 class CompositeParser
          Composite parser that delegates parsing tasks to a component parser based on the declared content type of the incoming document.
 class CryptoParser
          Decrypts the incoming document stream and delegates further parsing to another parser instance.
 class DefaultParser
          A composite parser based on all the Parser implementations available through the service provider mechanism.
 class DelegatingParser
          Base class for parser implementations that want to delegate parts of the task of parsing an input document to another parser.
 class EmptyParser
          Dummy parser that always produces an empty XHTML document without even attempting to parse the given document stream.
 class ErrorParser
          Dummy parser that always throws a TikaException without even attempting to parse the given document stream.
 class NetworkParser
           
 class ParserDecorator
          Decorator base class for the Parser interface.
 class ParserPostProcessor
          Parser decorator that post-processes the results from a decorated parser.
 

Methods in org.apache.tika.parser that return Parser
protected  Parser DelegatingParser.getDelegateParser(ParseContext context)
          Returns the parser instance to which parsing tasks should be delegated.
 Parser CompositeParser.getFallback()
          Returns the fallback parser.
protected  Parser CompositeParser.getParser(Metadata metadata)
          Returns the parser that best matches the given metadata.
protected  Parser CompositeParser.getParser(Metadata metadata, ParseContext context)
           
 Parser ParserDecorator.getWrappedParser()
          Gets the parser wrapped by this ParserDecorator
static Parser ParserDecorator.withTypes(Parser parser, Set<MediaType> types)
          Decorates the given parser so that it always claims to support parsing of the given media types.
 

Methods in org.apache.tika.parser that return types with arguments of type Parser
 Map<MediaType,List<Parser>> CompositeParser.findDuplicateParsers(ParseContext context)
          Utility method that goes through all the component parsers and finds all media types for which more than one parser declares support.
 Map<MediaType,Parser> CompositeParser.getParsers()
          Returns the component parsers.
 Map<MediaType,Parser> DefaultParser.getParsers(ParseContext context)
           
 Map<MediaType,Parser> CompositeParser.getParsers(ParseContext context)
           
 

Methods in org.apache.tika.parser with parameters of type Parser
 void CompositeParser.setFallback(Parser fallback)
          Sets the fallback parser.
static Parser ParserDecorator.withTypes(Parser parser, Set<MediaType> types)
          Decorates the given parser so that it always claims to support parsing of the given media types.
 

Method parameters in org.apache.tika.parser with type arguments of type Parser
 void CompositeParser.setParsers(Map<MediaType,Parser> parsers)
          Sets the component parsers.
 

Constructors in org.apache.tika.parser with parameters of type Parser
AutoDetectParser(Detector detector, Parser... parsers)
           
AutoDetectParser(Parser... parsers)
          Creates an auto-detecting parser instance using the specified set of parser.
CompositeParser(MediaTypeRegistry registry, Parser... parsers)
           
ParserDecorator(Parser parser)
          Creates a decorator for the given parser.
ParserPostProcessor(Parser parser)
          Creates a post-processing decorator for the given parser.
ParsingReader(Parser parser, InputStream stream, Metadata metadata, ParseContext context)
          Creates a reader for the text content of the given binary stream with the given document metadata.
ParsingReader(Parser parser, InputStream stream, Metadata metadata, ParseContext context, Executor executor)
          Creates a reader for the text content of the given binary stream with the given document metadata.
 

Constructor parameters in org.apache.tika.parser with type arguments of type Parser
CompositeParser(MediaTypeRegistry registry, List<Parser> parsers)
           
 

Uses of Parser in org.apache.tika.parser.external
 

Classes in org.apache.tika.parser.external that implement Parser
 class CompositeExternalParser
          A Composite Parser that wraps up all the available External Parsers, and provides an easy way to access them.
 class ExternalParser
          Parser that uses an external program (like catdoc or pdf2txt) to extract text content and metadata from a given document.
 



Copyright © 2007-2013 The Apache Software Foundation. All Rights Reserved.