AnalyzeResult Class

  • java.lang.Object
    • com.azure.ai.formrecognizer.documentanalysis.models.AnalyzeResult

public final class AnalyzeResult

Model representing the document analysis result.

Constructor Summary

Constructor Description
AnalyzeResult()

Creates a new instance of AnalyzeResult.

Method Summary

Modifier and Type Method and Description
String getContent()

Get the content property: Concatenate string representation of all textual and visual elements in reading order.

List<AnalyzedDocument> getDocuments()

Get the documents property: Extracted documents.

List<DocumentKeyValuePair> getKeyValuePairs()

Get the keyValuePairs property: Extracted key-value pairs.

List<DocumentLanguage> getLanguages()

Get the detected languages.

String getModelId()

Get the modelId property: Model ID used to produce this result.

List<DocumentPage> getPages()

Get the pages property: Analyzed pages.

List<DocumentParagraph> getParagraphs()

Get the paragraphs property: Extracted paragraphs.

String getServiceVersion()

Get the Service version used to create this document classifier.

List<DocumentStyle> getStyles()

Get the styles property: Extracted font styles.

List<DocumentTable> getTables()

Get the tables property: Extracted tables.

Methods inherited from java.lang.Object

Constructor Details

AnalyzeResult

public AnalyzeResult()

Creates a new instance of AnalyzeResult.

Method Details

getContent

public String getContent()

Get the content property: Concatenate string representation of all textual and visual elements in reading order.

Returns:

the content value.

getDocuments

public List getDocuments()

Get the documents property: Extracted documents.

Returns:

the documents value.

getKeyValuePairs

public List getKeyValuePairs()

Get the keyValuePairs property: Extracted key-value pairs.

Returns:

the keyValuePairs value.

getLanguages

public List getLanguages()

Get the detected languages.

Returns:

the languages value.

getModelId

public String getModelId()

Get the modelId property: Model ID used to produce this result.

Returns:

the modelId value.

getPages

public List getPages()

Get the pages property: Analyzed pages.

Returns:

the pages value.

getParagraphs

public List getParagraphs()

Get the paragraphs property: Extracted paragraphs.

Returns:

the paragraphs value.

getServiceVersion

public String getServiceVersion()

Get the Service version used to create this document classifier.

Returns:

the serviceVersion value.

getStyles

public List getStyles()

Get the styles property: Extracted font styles.

Returns:

the styles value.

getTables

public List getTables()

Get the tables property: Extracted tables.

Returns:

the tables value.

Applies to