共用方式為


AnalyzedDocument Class

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

public class AnalyzedDocument

Model class describing the location and semantic content of a document.

Constructor Summary

Constructor Description
AnalyzedDocument()

Creates a new instance of AnalyzedDocument.

Method Summary

Modifier and Type Method and Description
List<BoundingRegion> getBoundingRegions()

Get the boundingRegions property: Bounding regions covering the document.

float getConfidence()

Get the confidence property: Confidence of correctly extracting the document.

String getDocType()

Get the docType property: AnalyzeDocument type.

Map<String,DocumentField> getFields()

Get the fields property: Dictionary of named field values.

List<DocumentSpan> getSpans()

Get the spans property: Location of the document in the reading order concatenated content.

Methods inherited from java.lang.Object

Constructor Details

AnalyzedDocument

public AnalyzedDocument()

Creates a new instance of AnalyzedDocument.

Method Details

getBoundingRegions

public List getBoundingRegions()

Get the boundingRegions property: Bounding regions covering the document.

Returns:

the boundingRegions value.

getConfidence

public float getConfidence()

Get the confidence property: Confidence of correctly extracting the document.

Returns:

the confidence value.

getDocType

public String getDocType()

Get the docType property: AnalyzeDocument type.

Returns:

the docType value.

getFields

public Map getFields()

Get the fields property: Dictionary of named field values.

Returns:

the fields value.

getSpans

public List getSpans()

Get the spans property: Location of the document in the reading order concatenated content.

Returns:

the spans value.

Applies to