DocumentTable Class

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

public final class DocumentTable

A table object consisting table cells arranged in a rectangular layout.

Constructor Summary

Constructor Description
DocumentTable()

Creates a DocumentTable object.

Method Summary

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

Get the boundingRegions property: Bounding regions covering the table.

List<DocumentTableCell> getCells()

Get the cells property: Cells contained within the table.

int getColumnCount()

Get the columnCount property: Number of columns in the table.

int getRowCount()

Get the rowCount property: Number of rows in the table.

List<DocumentSpan> getSpans()

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

Methods inherited from java.lang.Object

Constructor Details

DocumentTable

public DocumentTable()

Creates a DocumentTable object.

Method Details

getBoundingRegions

public List getBoundingRegions()

Get the boundingRegions property: Bounding regions covering the table.

Returns:

the boundingRegions value.

getCells

public List getCells()

Get the cells property: Cells contained within the table.

Returns:

the cells value.

getColumnCount

public int getColumnCount()

Get the columnCount property: Number of columns in the table.

Returns:

the columnCount value.

getRowCount

public int getRowCount()

Get the rowCount property: Number of rows in the table.

Returns:

the rowCount value.

getSpans

public List getSpans()

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

Returns:

the spans value.

Applies to