Class DetectedLanguage
java.lang.Object
com.azure.ai.textanalytics.models.DetectedLanguage
The
DetectedLanguage model.-
Constructor Summary
ConstructorsConstructorDescriptionDetectedLanguage(String name, String iso6391Name, double confidenceScore, com.azure.core.util.IterableStream<TextAnalyticsWarning> warnings) Creates aDetectedLanguagemodel that describes detected language content. -
Method Summary
Modifier and TypeMethodDescriptiondoubleGets the confidenceScore property: A confidence score between 0 and 1.Gets the iso6391Name property: A two letter representation of the detected language according to the ISO 639-1 standard (e.g.getName()Gets the name property: Long name of a detected language (e.g.com.azure.core.util.IterableStream<TextAnalyticsWarning>Gets theIterableStreamofText Analytics warnings.
-
Constructor Details
-
DetectedLanguage
public DetectedLanguage(String name, String iso6391Name, double confidenceScore, com.azure.core.util.IterableStream<TextAnalyticsWarning> warnings) Creates aDetectedLanguagemodel that describes detected language content.- Parameters:
name- The name of a detected language.iso6391Name- A two letter representation of the detected language according to the ISO 639-1 standard.confidenceScore- A confidence score between 0 and 1.warnings- AnIterableStreamofwarnings.
-
-
Method Details
-
getName
Gets the name property: Long name of a detected language (e.g. English, French).- Returns:
- the name value.
-
getIso6391Name
Gets the iso6391Name property: A two letter representation of the detected language according to the ISO 639-1 standard (e.g. en, fr).- Returns:
- the iso6391Name value.
-
getConfidenceScore
public double getConfidenceScore()Gets the confidenceScore property: A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true.- Returns:
- the confidenceScore value.
-
getWarnings
Gets theIterableStreamofText Analytics warnings.- Returns:
IterableStreamofTextAnalyticsWarning.
-