Package opennlp.tools.langdetect
Interface LanguageDetector
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
LanguageDetectorME
The interface for
LanguageDetector
which predicts the Language
for a context.-
Method Summary
Modifier and TypeMethodDescriptionString[]
predictLanguage
(CharSequence content) Predicts theLanguage
for the fullcontent
length.Language[]
predictLanguages
(CharSequence content) Predicts thelanguages
for the fullcontent
length.
-
Method Details
-
predictLanguages
Predicts thelanguages
for the fullcontent
length.- Parameters:
content
- The textual content to detect potentiallanguages
from.- Returns:
- the predicted languages
-
predictLanguage
Predicts theLanguage
for the fullcontent
length.- Parameters:
content
- The textual content to detect potentiallanguages
from.- Returns:
- the language with the highest confidence
-
getSupportedLanguages
String[] getSupportedLanguages()- Returns:
- Retrieves an array of language (codes) that are supported by a
LanguageDetector
.
-