Package org.apache.tika.language.detect
Class LanguageHandler
- java.lang.Object
- 
- org.xml.sax.helpers.DefaultHandler
- 
- org.apache.tika.sax.ContentHandlerDecorator
- 
- org.apache.tika.sax.WriteOutContentHandler
- 
- org.apache.tika.language.detect.LanguageHandler
 
 
 
 
- 
- All Implemented Interfaces:
- ContentHandler,- DTDHandler,- EntityResolver,- ErrorHandler
 
 public class LanguageHandler extends WriteOutContentHandler SAX content handler that updates a language detector based on all the received character content.- Since:
- Apache Tika 0.10
 
- 
- 
Constructor SummaryConstructors Constructor Description LanguageHandler()LanguageHandler(LanguageDetector detector)LanguageHandler(LanguageWriter writer)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description LanguageDetectorgetDetector()Returns the language detector used by this content handler.LanguageResultgetLanguage()Returns the detected language based on text handled thus far.- 
Methods inherited from class org.apache.tika.sax.WriteOutContentHandlercharacters, ignorableWhitespace
 - 
Methods inherited from class org.apache.tika.sax.ContentHandlerDecoratorendDocument, endElement, endPrefixMapping, error, fatalError, handleException, processingInstruction, setContentHandler, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping, toString, warning
 - 
Methods inherited from class org.xml.sax.helpers.DefaultHandlernotationDecl, resolveEntity, unparsedEntityDecl
 
- 
 
- 
- 
- 
Constructor Detail- 
LanguageHandlerpublic LanguageHandler() throws IOException- Throws:
- IOException
 
 - 
LanguageHandlerpublic LanguageHandler(LanguageWriter writer) 
 - 
LanguageHandlerpublic LanguageHandler(LanguageDetector detector) 
 
- 
 - 
Method Detail- 
getDetectorpublic LanguageDetector getDetector() Returns the language detector used by this content handler. Note that the returned detector gets updated whenever new SAX events are received by this content handler.- Returns:
- language detector
 
 - 
getLanguagepublic LanguageResult getLanguage() Returns the detected language based on text handled thus far.- Returns:
- LanguageResult
 
 
- 
 
-