public final class DocumentData extends Object
Provides extracted data of the document.
Constructor and Description |
---|
DocumentData()
Initializes a new instance of the
DocumentData class. |
Modifier and Type | Method and Description |
---|---|
void |
addDataField(DocumentDataField dataField)
Adds a data field.
|
void |
addDataFields(List<DocumentDataField> dataFields)
Adds a collection of data fields.
|
void |
addDataTable(DocumentDataTable dataTable)
Adds a data table.
|
DocumentDataField |
get_Item(int index)
Gets a data field.
|
int |
getCount()
Gets a total number of the data fields.
|
List<DocumentDataField> |
getDataFieldsByName(String fieldName)
Gets a collection of the data fields which name is
fieldName . |
List<DocumentDataTable> |
getDataTables()
Gets a collection of the data tables.
|
public DocumentData()
Initializes a new instance of the DocumentData
class.
public int getCount()
Gets a total number of the data fields.
public DocumentDataField get_Item(int index)
Gets a data field.
index
- A zero-based index of the data field.DocumentDataField
.public List<DocumentDataField> getDataFieldsByName(String fieldName)
Gets a collection of the data fields which name is fieldName
.
fieldName
- The name of the data field.fieldName
.public void addDataField(DocumentDataField dataField)
Adds a data field.
dataField
- A data field to add.public void addDataFields(List<DocumentDataField> dataFields)
Adds a collection of data fields.
dataFields
- A collection of data fields to add.public List<DocumentDataTable> getDataTables()
Gets a collection of the data tables.
public void addDataTable(DocumentDataTable dataTable)
Adds a data table.
dataTable
- A data table to add.Copyright © 2019. All rights reserved.