Uses of Class
org.apache.tika.sax.ContentHandlerDecorator
-
Packages that use ContentHandlerDecorator Package Description org.apache.tika.language.detect org.apache.tika.parser.ctakes org.apache.tika.parser.odf org.apache.tika.sax SAX utilities.org.apache.tika.sax.xpath XPath utilities -
-
Uses of ContentHandlerDecorator in org.apache.tika.language.detect
Subclasses of ContentHandlerDecorator in org.apache.tika.language.detect Modifier and Type Class Description class
LanguageHandler
SAX content handler that updates a language detector based on all the received character content. -
Uses of ContentHandlerDecorator in org.apache.tika.parser.ctakes
Subclasses of ContentHandlerDecorator in org.apache.tika.parser.ctakes Modifier and Type Class Description class
CTAKESContentHandler
Class used to extract biomedical information while parsing. -
Uses of ContentHandlerDecorator in org.apache.tika.parser.odf
Subclasses of ContentHandlerDecorator in org.apache.tika.parser.odf Modifier and Type Class Description class
NSNormalizerContentHandler
Content handler decorator that: Maps old OpenOffice 1.0 Namespaces to the OpenDocument ones Returns a fake DTD when parser requests OpenOffice DTD -
Uses of ContentHandlerDecorator in org.apache.tika.sax
Subclasses of ContentHandlerDecorator in org.apache.tika.sax Modifier and Type Class Description class
BodyContentHandler
Content handler decorator that only passes everything inside the XHTML <body/> tag to the underlying handler.class
ElementMappingContentHandler
Content handler decorator that maps elementQName
s using aMap
.class
EmbeddedContentHandler
Content handler decorator that prevents theEmbeddedContentHandler.startDocument()
andEmbeddedContentHandler.endDocument()
events from reaching the decorated handler.class
EndDocumentShieldingContentHandler
A wrapper around aContentHandler
which will ignore normal SAX calls toEndDocumentShieldingContentHandler.endDocument()
, and only fire them later.class
ExpandedTitleContentHandler
Content handler decorator which wraps aTransformerHandler
in order to allow theTITLE
tag to render as<title></title>
rather than<title/>
which is accomplished by calling theContentHandler.characters(char[], int, int)
method with alength
of 1 but a zero length char array.class
OfflineContentHandler
Content handler decorator that always returns an empty stream from theOfflineContentHandler.resolveEntity(String, String)
method to prevent potential network or other external resources from being accessed by an XML parser.class
PhoneExtractingContentHandler
Class used to extract phone numbers while parsing.class
RichTextContentHandler
Content handler for Rich Text, it will extract XHTML <img/> tag <alt/> attribute and XHTML <a/> tag <name/> attribute into the output.class
SafeContentHandler
Content handler decorator that makes sure that the character events (SafeContentHandler.characters(char[], int, int)
orSafeContentHandler.ignorableWhitespace(char[], int, int)
) passed to the decorated content handler contain only valid XML characters.class
SecureContentHandler
Content handler decorator that attempts to prevent denial of service attacks against Tika parsers.class
StandardsExtractingContentHandler
StandardsExtractingContentHandler is a Content Handler used to extract standard references while parsing.class
TaggedContentHandler
A content handler decorator that tags potential exceptions so that the handler that caused the exception can easily be identified.class
WriteOutContentHandler
SAX event handler that writes content up to an optional write limit out to a character stream or other decorated handler.class
XHTMLContentHandler
Content handler decorator that simplifies the task of producing XHTML events for Tika content parsers.class
XMPContentHandler
Content handler decorator that simplifies the task of producing XMP output. -
Uses of ContentHandlerDecorator in org.apache.tika.sax.xpath
Subclasses of ContentHandlerDecorator in org.apache.tika.sax.xpath Modifier and Type Class Description class
MatchingContentHandler
Content handler decorator that only passes the elements, attributes, and text nodes that match the given XPath expression.
-