Class TextDocumentInput

java.lang.Object
com.azure.ai.textanalytics.models.TextDocumentInput

public final class TextDocumentInput extends Object
Contains an input document to be analyzed by the service.
  • Constructor Details

    • TextDocumentInput

      public TextDocumentInput(String id, String text)
      Creates a TextDocumentInput model that describes the documents.
      Parameters:
      id - A unique, non-empty document identifier.
      text - The document to process.
  • Method Details

    • getId

      public String getId()
      Get the id property: A unique, non-empty document identifier.
      Returns:
      The id value.
    • getText

      public String getText()
      Get the text property: The document to process.
      Returns:
      The text value.
    • getLanguage

      public String getLanguage()
      Get the language property: (Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use "en" for English; "es" for Spanish etc. If not set, use "en" for English as default.
      Returns:
      The language value.
    • setLanguage

      public TextDocumentInput setLanguage(String language)
      Set the language property: (Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use "en" for English; "es" for Spanish etc. If not set, use "en" for English as default.
      Parameters:
      language - Optional. This is the 2 letter ISO 639-1 representation of a language.
      Returns:
      The object TextDocumentInput itself.
    • toString

      public String toString()
      Overrides:
      toString in class Object