DocumentTableCell Class

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

public final class DocumentTableCell

An object representing the location and content of a table cell.

Constructor Summary

Constructor Description
DocumentTableCell()

Creates a DocumentTableCell object.

Method Summary

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

Get the boundingRegions property: Bounding regions covering the table cell.

int getColumnIndex()

Get the columnIndex property: Column index of the cell.

Integer getColumnSpan()

Get the columnSpan property: Number of columns spanned by this cell.

String getContent()

Get the content property: Concatenated content of the table cell in reading order.

DocumentTableCellKind getKind()

Get the kind property: Table cell kind.

int getRowIndex()

Get the rowIndex property: Row index of the cell.

Integer getRowSpan()

Get the rowSpan property: Number of rows spanned by this cell.

List<DocumentSpan> getSpans()

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

Methods inherited from java.lang.Object

Constructor Details

DocumentTableCell

public DocumentTableCell()

Creates a DocumentTableCell object.

Method Details

getBoundingRegions

public List getBoundingRegions()

Get the boundingRegions property: Bounding regions covering the table cell.

Returns:

the boundingRegions value.

getColumnIndex

public int getColumnIndex()

Get the columnIndex property: Column index of the cell.

Returns:

the columnIndex value.

getColumnSpan

public Integer getColumnSpan()

Get the columnSpan property: Number of columns spanned by this cell.

Returns:

the columnSpan value.

getContent

public String getContent()

Get the content property: Concatenated content of the table cell in reading order.

Returns:

the content value.

getKind

public DocumentTableCellKind getKind()

Get the kind property: Table cell kind.

Returns:

the kind value.

getRowIndex

public int getRowIndex()

Get the rowIndex property: Row index of the cell.

Returns:

the rowIndex value.

getRowSpan

public Integer getRowSpan()

Get the rowSpan property: Number of rows spanned by this cell.

Returns:

the rowSpan value.

getSpans

public List getSpans()

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

Returns:

the spans value.

Applies to