Uses of Class
org.apache.tika.parser.ParseContext

Packages that use ParseContext
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 ParseContext in org.apache.tika.extractor
 

Constructors in org.apache.tika.extractor with parameters of type ParseContext
ParsingEmbeddedDocumentExtractor(ParseContext context)
           
 

Uses of ParseContext in org.apache.tika.fork
 

Methods in org.apache.tika.fork with parameters of type ParseContext
 Set<MediaType> ForkParser.getSupportedTypes(ParseContext context)
           
 void ForkParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of ParseContext in org.apache.tika.parser
 

Methods in org.apache.tika.parser with parameters of type ParseContext
 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.
protected  Parser DelegatingParser.getDelegateParser(ParseContext context)
          Returns the parser instance to which parsing tasks should be delegated.
protected  Parser CompositeParser.getParser(Metadata metadata, ParseContext context)
           
 Map<MediaType,Parser> CompositeParser.getParsers(ParseContext context)
           
 Set<MediaType> ParserDecorator.getSupportedTypes(ParseContext context)
          Delegates the method call to the decorated parser.
 Set<MediaType> Parser.getSupportedTypes(ParseContext context)
          Returns the set of media types supported by this parser when used with the given parse context.
 Set<MediaType> NetworkParser.getSupportedTypes(ParseContext context)
           
 Set<MediaType> ErrorParser.getSupportedTypes(ParseContext context)
           
 Set<MediaType> EmptyParser.getSupportedTypes(ParseContext context)
           
 Set<MediaType> DelegatingParser.getSupportedTypes(ParseContext context)
           
 Set<MediaType> CryptoParser.getSupportedTypes(ParseContext context)
           
 Set<MediaType> CompositeParser.getSupportedTypes(ParseContext context)
           
 void ParserPostProcessor.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Forwards the call to the delegated parser and post-processes the results as described above.
 void ParserDecorator.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the method call to the decorated parser.
 void Parser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Parses a document stream into a sequence of XHTML SAX events.
 void NetworkParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void ErrorParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void EmptyParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void DelegatingParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Looks up the delegate parser from the parsing context and delegates the parse operation to it.
 void CryptoParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void CompositeParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the call to the matching component parser.
 void AutoDetectParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Constructors in org.apache.tika.parser with parameters of type ParseContext
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.
 

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

Methods in org.apache.tika.parser.external with parameters of type ParseContext
 Set<MediaType> ExternalParser.getSupportedTypes(ParseContext context)
           
 void ExternalParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Executes the configured external command and passes the given document stream as a simple XHTML document to the given SAX content handler.
 



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