Package org.apache.tika.language.detect
Class LanguageResult
java.lang.Object
org.apache.tika.language.detect.LanguageResult
-
Field Summary
-
Constructor Summary
ConstructorDescriptionLanguageResult
(String language, LanguageConfidence confidence, float rawScore) -
Method Summary
Modifier and TypeMethodDescriptionThe ISO 639-1 language code (plus optional country code)float
boolean
isLanguage
(String language) Return true if the target language matches the detected language.boolean
boolean
toString()
-
Field Details
-
NULL
-
-
Constructor Details
-
LanguageResult
- Parameters:
language
- ISO 639-1 language code (plus optional country code)rawScore
- confidence of detector in the result.
-
-
Method Details
-
getLanguage
The ISO 639-1 language code (plus optional country code)- Returns:
- a string representation of the language code
-
getRawScore
public float getRawScore() -
getConfidence
-
isReasonablyCertain
public boolean isReasonablyCertain() -
isUnknown
public boolean isUnknown() -
isLanguage
Return true if the target language matches the detected language. We consider it a match if, for the precision requested or detected, it matches. This means:target | detected | match? zh | en | false zh | zh | true zh | zh-CN | true zh-CN | zh | true zh-CN | zh-TW | false zh-CN | zh-cn | true (case-insensitive)
- Parameters:
language
-- Returns:
-
toString
-