Uses of Class
org.apache.tika.metadata.Metadata

Packages that use Metadata
org.apache.tika   
org.apache.tika.detect   
org.apache.tika.mime   
org.apache.tika.parser   
org.apache.tika.sax   
 

Uses of Metadata in org.apache.tika
 

Methods in org.apache.tika with parameters of type Metadata
 java.lang.String Tika.detect(java.io.InputStream stream, Metadata metadata)
          Detects the media type of the given document.
 java.io.Reader Tika.parse(java.io.InputStream stream, Metadata metadata)
          Parses the given document and returns the extracted text content.
 java.lang.String Tika.parseToString(java.io.InputStream stream, Metadata metadata)
          Parses the given document and returns the extracted text content.
 

Uses of Metadata in org.apache.tika.detect
 

Methods in org.apache.tika.detect with parameters of type Metadata
 MediaType TypeDetector.detect(java.io.InputStream input, Metadata metadata)
          Detects the content type of an input document based on a type hint given in the input metadata.
 MediaType TextDetector.detect(java.io.InputStream input, Metadata metadata)
          Looks at the beginning of the document input stream to determine whether the document is text or not.
 MediaType NameDetector.detect(java.io.InputStream input, Metadata metadata)
          Detects the content type of an input document based on the document name given in the input metadata.
 MediaType MagicDetector.detect(java.io.InputStream input, Metadata metadata)
           
 MediaType Detector.detect(java.io.InputStream input, Metadata metadata)
          Detects the content type of the given input document.
 MediaType CompositeDetector.detect(java.io.InputStream input, Metadata metadata)
           
 

Uses of Metadata in org.apache.tika.mime
 

Methods in org.apache.tika.mime with parameters of type Metadata
 MediaType MimeTypes.detect(java.io.InputStream input, Metadata metadata)
          Automatically detects the MIME type of a document based on magic markers in the stream prefix and any given metadata hints.
 

Uses of Metadata in org.apache.tika.parser
 

Methods in org.apache.tika.parser with parameters of type Metadata
protected  Parser CompositeParser.getParser(Metadata metadata)
          Returns the parser that best matches the given metadata.
 void ParserDecorator.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void Parser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void ExternalParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void ErrorParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void EmptyParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void DelegatingParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void CompositeParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0.
 void AutoDetectParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata)
           
 void ParserPostProcessor.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
          Forwards the call to the delegated parser and post-processes the results as described above.
 void ParserDecorator.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the method call to the decorated parser.
 void Parser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
          Parses a document stream into a sequence of XHTML SAX events.
 void ExternalParser.parse(java.io.InputStream stream, org.xml.sax.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.
 void ErrorParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
           
 void EmptyParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
           
 void DelegatingParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
          Looks up the delegate parser from the parsing context and delegates the parse operation to it.
 void CompositeParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the call to the matching component parser.
 void AutoDetectParser.parse(java.io.InputStream stream, org.xml.sax.ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Constructors in org.apache.tika.parser with parameters of type Metadata
ParsingReader(Parser parser, java.io.InputStream stream, Metadata metadata)
          Deprecated. This method will be removed in Apache Tika 1.0
ParsingReader(Parser parser, java.io.InputStream stream, Metadata metadata, java.util.concurrent.Executor executor)
          Deprecated. This method will be removed in Apache Tika 1.0
ParsingReader(Parser parser, java.io.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, java.io.InputStream stream, Metadata metadata, ParseContext context, java.util.concurrent.Executor executor)
          Creates a reader for the text content of the given binary stream with the given document metadata.
 

Uses of Metadata in org.apache.tika.sax
 

Constructors in org.apache.tika.sax with parameters of type Metadata
XHTMLContentHandler(org.xml.sax.ContentHandler handler, Metadata metadata)
           
 



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