|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Parser | |
|---|---|
| org.apache.tika.config | |
| org.apache.tika.parser | |
| org.apache.tika.utils | |
| Uses of Parser in org.apache.tika.config |
|---|
| Methods in org.apache.tika.config that return Parser | |
|---|---|
Parser |
TikaConfig.getParser(java.lang.String mimeType)
Returns the parser instance configured for the given MIME type. |
| Methods in org.apache.tika.config that return types with arguments of type Parser | |
|---|---|
java.util.Map<java.lang.String,Parser> |
TikaConfig.getParsers()
|
| Methods in org.apache.tika.config with parameters of type Parser | |
|---|---|
static TikaConfig |
TikaConfig.getDefaultConfig(Parser delegate)
Deprecated. This method will be removed in Apache Tika 1.0 |
| Constructors in org.apache.tika.config with parameters of type Parser | |
|---|---|
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,
Parser delegate)
Deprecated. This method will be removed in Apache Tika 1.0 |
|
TikaConfig(java.io.InputStream stream,
Parser delegate)
Deprecated. This method will be removed in Apache Tika 1.0 |
|
| Uses of Parser in org.apache.tika.parser |
|---|
| Classes in org.apache.tika.parser that implement Parser | |
|---|---|
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 |
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 |
ExternalParser
Parser that uses an external program (like catdoc or pdf2txt) to extract text content from a given document. |
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 | |
|---|---|
Parser |
CompositeParser.getFallback()
Returns the fallback parser. |
protected Parser |
CompositeParser.getParser(Metadata metadata)
Returns the parser that best matches the given metadata. |
| Methods in org.apache.tika.parser that return types with arguments of type Parser | |
|---|---|
java.util.Map<java.lang.String,Parser> |
CompositeParser.getParsers()
Returns the component parsers. |
| Methods in org.apache.tika.parser with parameters of type Parser | |
|---|---|
void |
CompositeParser.setFallback(Parser fallback)
Sets the fallback parser. |
| Method parameters in org.apache.tika.parser with type arguments of type Parser | |
|---|---|
void |
CompositeParser.setParsers(java.util.Map<java.lang.String,Parser> parsers)
Sets the component parsers. |
| Constructors in org.apache.tika.parser with parameters of type Parser | |
|---|---|
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,
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 Parser in org.apache.tika.utils |
|---|
| Methods in org.apache.tika.utils that return Parser | |
|---|---|
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||