Uses of Class
org.apache.tika.exception.TikaException

Packages that use TikaException
org.apache.tika   
org.apache.tika.config   
org.apache.tika.mime   
org.apache.tika.parser   
org.apache.tika.sax   
org.apache.tika.utils   
 

Uses of TikaException in org.apache.tika
 

Methods in org.apache.tika that throw TikaException
 java.lang.String Tika.parseToString(java.io.File file)
          Parses the given file and returns the extracted text content.
 java.lang.String Tika.parseToString(java.io.InputStream stream)
          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.
 java.lang.String Tika.parseToString(java.net.URL url)
          Parses the resource at the given URL and returns the extracted text content.
 

Uses of TikaException in org.apache.tika.config
 

Methods in org.apache.tika.config that throw TikaException
static TikaConfig TikaConfig.getDefaultConfig(Parser delegate)
          Deprecated. This method will be removed in Apache Tika 1.0
 

Constructors in org.apache.tika.config that throw TikaException
TikaConfig(org.w3c.dom.Document document)
           
TikaConfig(org.w3c.dom.Document document, Parser delegate)
          Deprecated. This method will be removed in Apache Tika 1.0
TikaConfig(org.w3c.dom.Element element)
           
TikaConfig(org.w3c.dom.Element element, Parser delegate)
          Deprecated. This method will be removed in Apache Tika 1.0
TikaConfig(java.io.File file)
           
TikaConfig(java.io.InputStream stream)
           
TikaConfig(java.io.InputStream stream, Parser delegate)
          Deprecated. This method will be removed in Apache Tika 1.0
TikaConfig(java.lang.String file)
           
TikaConfig(java.net.URL url)
           
 

Uses of TikaException in org.apache.tika.mime
 

Subclasses of TikaException in org.apache.tika.mime
 class MimeTypeException
          A class to encapsulate MimeType related exceptions.
 

Uses of TikaException in org.apache.tika.parser
 

Methods in org.apache.tika.parser that throw TikaException
 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 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)
           
 

Uses of TikaException in org.apache.tika.sax
 

Methods in org.apache.tika.sax that throw TikaException
 void SecureContentHandler.throwIfCauseOf(org.xml.sax.SAXException e)
          Converts the given SAXException to a corresponding TikaException if it's caused by this instance detecting a zip bomb.
 

Uses of TikaException in org.apache.tika.utils
 

Methods in org.apache.tika.utils that throw TikaException
static Parser ParseUtils.getParser(java.io.File documentFile, TikaConfig config)
          Returns a parser that can handle the specified MIME type, and is set to receive input from a stream opened from the specified URL.
static Parser ParseUtils.getParser(java.lang.String mimeType, TikaConfig config)
          Returns a parser that can handle the specified MIME type, and is set to receive input from a stream opened from the specified URL.
static Parser ParseUtils.getParser(java.net.URL documentUrl, TikaConfig config)
          Returns a parser that can handle the specified MIME type, and is set to receive input from a stream opened from the specified URL.
static java.lang.String ParseUtils.getStringContent(java.io.File documentFile, TikaConfig config)
          Gets the string content of a document read from an input stream.
static java.lang.String ParseUtils.getStringContent(java.io.File documentFile, TikaConfig config, java.lang.String mimeType)
          Gets the string content of a document read from an input stream.
static java.lang.String ParseUtils.getStringContent(java.io.InputStream stream, TikaConfig config, java.lang.String mimeType)
          Gets the string content of a document read from an input stream.
static java.lang.String ParseUtils.getStringContent(java.net.URL documentUrl, TikaConfig config)
          Gets the string content of a document read from an input stream.
static java.lang.String ParseUtils.getStringContent(java.net.URL documentUrl, TikaConfig config, java.lang.String mimeType)
          Gets the string content of a document read from an input stream.
 



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