public class Tables
extends com.ibm.cloud.sdk.core.service.model.GenericModel
Modifier and Type | Field and Description |
---|---|
protected java.util.List<BodyCells> |
bodyCells |
protected java.util.List<ColumnHeaders> |
columnHeaders |
protected java.util.List<Contexts> |
contexts |
protected java.util.List<KeyValuePair> |
keyValuePairs |
protected Location |
location |
protected java.util.List<RowHeaders> |
rowHeaders |
protected SectionTitle |
sectionTitle |
protected java.util.List<TableHeaders> |
tableHeaders |
protected java.lang.String |
text |
protected TableTitle |
title |
Constructor and Description |
---|
Tables() |
Modifier and Type | Method and Description |
---|---|
java.util.List<BodyCells> |
getBodyCells()
Gets the bodyCells.
|
java.util.List<ColumnHeaders> |
getColumnHeaders()
Gets the columnHeaders.
|
java.util.List<Contexts> |
getContexts()
Gets the contexts.
|
java.util.List<KeyValuePair> |
getKeyValuePairs()
Gets the keyValuePairs.
|
Location |
getLocation()
Gets the location.
|
java.util.List<RowHeaders> |
getRowHeaders()
Gets the rowHeaders.
|
SectionTitle |
getSectionTitle()
Gets the sectionTitle.
|
java.util.List<TableHeaders> |
getTableHeaders()
Gets the tableHeaders.
|
java.lang.String |
getText()
Gets the text.
|
TableTitle |
getTitle()
Gets the title.
|
protected Location location
protected java.lang.String text
@SerializedName(value="section_title") protected SectionTitle sectionTitle
protected TableTitle title
@SerializedName(value="table_headers") protected java.util.List<TableHeaders> tableHeaders
@SerializedName(value="row_headers") protected java.util.List<RowHeaders> rowHeaders
@SerializedName(value="column_headers") protected java.util.List<ColumnHeaders> columnHeaders
@SerializedName(value="body_cells") protected java.util.List<BodyCells> bodyCells
protected java.util.List<Contexts> contexts
@SerializedName(value="key_value_pairs") protected java.util.List<KeyValuePair> keyValuePairs
public Location getLocation()
The numeric location of the identified element in the document, represented with two integers labeled `begin` and `end`.
public java.lang.String getText()
The textual contents of the current table from the input document without associated markup content.
public SectionTitle getSectionTitle()
The table's section title, if identified.
public TableTitle getTitle()
If identified, the title or caption of the current table of the form `Table x.: ...`. Empty when no title is identified. When exposed, the `title` is also excluded from the `contexts` array of the same table.
public java.util.List<TableHeaders> getTableHeaders()
An array of table-level cells that apply as headers to all the other cells in the current table.
public java.util.List<RowHeaders> getRowHeaders()
An array of row-level cells, each applicable as a header to other cells in the same row as itself, of the current table.
public java.util.List<ColumnHeaders> getColumnHeaders()
An array of column-level cells, each applicable as a header to other cells in the same column as itself, of the current table.
public java.util.List<BodyCells> getBodyCells()
An array of cells that are neither table header nor column header nor row header cells, of the current table with corresponding row and column header associations.
public java.util.List<Contexts> getContexts()
An array of objects that list text that is related to the table contents and that precedes or follows the current table.
public java.util.List<KeyValuePair> getKeyValuePairs()
An array of key-value pairs identified in the current table.