public class Block extends Object implements Serializable
A Block represents items that are recognized in a document
within a group of pixels close to each other. The information returned in a
Block depends on the type of operation. In document-text
detection (for example DetectDocumentText), you get information about
the detected words and lines of text. In text analysis (for example
AnalyzeDocument), you can also get information about the fields,
tables and selection elements that are detected in the document.
An array of Block objects is returned by both synchronous and
asynchronous operations. In synchronous operations, such as
DetectDocumentText, the array of Block objects is the
entire set of results. In asynchronous operations, such as
GetDocumentAnalysis, the array is returned over one or more responses.
For more information, see How Amazon Textract Works.
| Constructor and Description |
|---|
Block() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getBlockType()
The type of text that's recognized in a block.
|
Integer |
getColumnIndex()
The column in which a table cell appears.
|
Integer |
getColumnSpan()
The number of columns that a table cell spans.
|
Float |
getConfidence()
The confidence that Amazon Textract has in the accuracy of the recognized
text and the accuracy of the geometry points around the recognized text.
|
List<String> |
getEntityTypes()
The type of entity.
|
Geometry |
getGeometry()
The location of the recognized text on the image.
|
String |
getId()
The identifier for the recognized text.
|
Integer |
getPage()
The page in which a block was detected.
|
List<Relationship> |
getRelationships()
A list of child blocks of the current block.
|
Integer |
getRowIndex()
The row in which a table cell is located.
|
Integer |
getRowSpan()
The number of rows that a table spans.
|
String |
getSelectionStatus()
The selection status of a selectable element such as a radio button or
checkbox.
|
String |
getText()
The word or line of text that's recognized by Amazon Textract.
|
int |
hashCode() |
void |
setBlockType(BlockType blockType)
The type of text that's recognized in a block.
|
void |
setBlockType(String blockType)
The type of text that's recognized in a block.
|
void |
setColumnIndex(Integer columnIndex)
The column in which a table cell appears.
|
void |
setColumnSpan(Integer columnSpan)
The number of columns that a table cell spans.
|
void |
setConfidence(Float confidence)
The confidence that Amazon Textract has in the accuracy of the recognized
text and the accuracy of the geometry points around the recognized text.
|
void |
setEntityTypes(Collection<String> entityTypes)
The type of entity.
|
void |
setGeometry(Geometry geometry)
The location of the recognized text on the image.
|
void |
setId(String id)
The identifier for the recognized text.
|
void |
setPage(Integer page)
The page in which a block was detected.
|
void |
setRelationships(Collection<Relationship> relationships)
A list of child blocks of the current block.
|
void |
setRowIndex(Integer rowIndex)
The row in which a table cell is located.
|
void |
setRowSpan(Integer rowSpan)
The number of rows that a table spans.
|
void |
setSelectionStatus(SelectionStatus selectionStatus)
The selection status of a selectable element such as a radio button or
checkbox.
|
void |
setSelectionStatus(String selectionStatus)
The selection status of a selectable element such as a radio button or
checkbox.
|
void |
setText(String text)
The word or line of text that's recognized by Amazon Textract.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Block |
withBlockType(BlockType blockType)
The type of text that's recognized in a block.
|
Block |
withBlockType(String blockType)
The type of text that's recognized in a block.
|
Block |
withColumnIndex(Integer columnIndex)
The column in which a table cell appears.
|
Block |
withColumnSpan(Integer columnSpan)
The number of columns that a table cell spans.
|
Block |
withConfidence(Float confidence)
The confidence that Amazon Textract has in the accuracy of the recognized
text and the accuracy of the geometry points around the recognized text.
|
Block |
withEntityTypes(Collection<String> entityTypes)
The type of entity.
|
Block |
withEntityTypes(String... entityTypes)
The type of entity.
|
Block |
withGeometry(Geometry geometry)
The location of the recognized text on the image.
|
Block |
withId(String id)
The identifier for the recognized text.
|
Block |
withPage(Integer page)
The page in which a block was detected.
|
Block |
withRelationships(Collection<Relationship> relationships)
A list of child blocks of the current block.
|
Block |
withRelationships(Relationship... relationships)
A list of child blocks of the current block.
|
Block |
withRowIndex(Integer rowIndex)
The row in which a table cell is located.
|
Block |
withRowSpan(Integer rowSpan)
The number of rows that a table spans.
|
Block |
withSelectionStatus(SelectionStatus selectionStatus)
The selection status of a selectable element such as a radio button or
checkbox.
|
Block |
withSelectionStatus(String selectionStatus)
The selection status of a selectable element such as a radio button or
checkbox.
|
Block |
withText(String text)
The word or line of text that's recognized by Amazon Textract.
|
public String getBlockType()
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for a field
that's detected on a document page. Use the EntityType field
to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE
Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio button or
checkbox that's detected on a document page. Use the value of
SelectionStatus to determine the status of the selection
element.
Constraints:
Allowed Values: KEY_VALUE_SET, PAGE, LINE, WORD, TABLE, CELL,
SELECTION_ELEMENT
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for
a field that's detected on a document page. Use the
EntityType field to determine if a KEY_VALUE_SET
object is a KEY Block object or a VALUE Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio
button or checkbox that's detected on a document page. Use the
value of SelectionStatus to determine the status of
the selection element.
BlockTypepublic void setBlockType(String blockType)
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for a field
that's detected on a document page. Use the EntityType field
to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE
Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio button or
checkbox that's detected on a document page. Use the value of
SelectionStatus to determine the status of the selection
element.
Constraints:
Allowed Values: KEY_VALUE_SET, PAGE, LINE, WORD, TABLE, CELL,
SELECTION_ELEMENT
blockType - The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects
for a field that's detected on a document page. Use the
EntityType field to determine if a KEY_VALUE_SET
object is a KEY Block object or a VALUE Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a
radio button or checkbox that's detected on a document page.
Use the value of SelectionStatus to determine the
status of the selection element.
BlockTypepublic Block withBlockType(String blockType)
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for a field
that's detected on a document page. Use the EntityType field
to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE
Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio button or
checkbox that's detected on a document page. Use the value of
SelectionStatus to determine the status of the selection
element.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: KEY_VALUE_SET, PAGE, LINE, WORD, TABLE, CELL,
SELECTION_ELEMENT
blockType - The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects
for a field that's detected on a document page. Use the
EntityType field to determine if a KEY_VALUE_SET
object is a KEY Block object or a VALUE Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a
radio button or checkbox that's detected on a document page.
Use the value of SelectionStatus to determine the
status of the selection element.
BlockTypepublic void setBlockType(BlockType blockType)
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for a field
that's detected on a document page. Use the EntityType field
to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE
Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio button or
checkbox that's detected on a document page. Use the value of
SelectionStatus to determine the status of the selection
element.
Constraints:
Allowed Values: KEY_VALUE_SET, PAGE, LINE, WORD, TABLE, CELL,
SELECTION_ELEMENT
blockType - The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects
for a field that's detected on a document page. Use the
EntityType field to determine if a KEY_VALUE_SET
object is a KEY Block object or a VALUE Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a
radio button or checkbox that's detected on a document page.
Use the value of SelectionStatus to determine the
status of the selection element.
BlockTypepublic Block withBlockType(BlockType blockType)
The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects for a field
that's detected on a document page. Use the EntityType field
to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE
Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a radio button or
checkbox that's detected on a document page. Use the value of
SelectionStatus to determine the status of the selection
element.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: KEY_VALUE_SET, PAGE, LINE, WORD, TABLE, CELL,
SELECTION_ELEMENT
blockType - The type of text that's recognized in a block. In text-detection operations, the following types are returned:
PAGE - Contains a list of the LINE Block objects that are detected on a document page.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
In text analysis operations, the following types are returned:
PAGE - Contains a list of child Block objects that are detected on a document page.
KEY_VALUE_SET - Stores the KEY and VALUE Block objects
for a field that's detected on a document page. Use the
EntityType field to determine if a KEY_VALUE_SET
object is a KEY Block object or a VALUE Block object.
WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces that's detected on a document page.
LINE - A string of tab-delimited, contiguous words that's detected on a document page.
TABLE - A table that's detected on a document page. A table is any grid-based information with 2 or more rows or columns with a cell span of 1 row and 1 column each.
CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.
SELECTION_ELEMENT - A selectable element such as a
radio button or checkbox that's detected on a document page.
Use the value of SelectionStatus to determine the
status of the selection element.
BlockTypepublic Float getConfidence()
The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
Constraints:
Length: 0 - 100
The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
public void setConfidence(Float confidence)
The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
Constraints:
Length: 0 - 100
confidence - The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
public Block withConfidence(Float confidence)
The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 100
confidence - The confidence that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.
public String getText()
The word or line of text that's recognized by Amazon Textract.
The word or line of text that's recognized by Amazon Textract.
public void setText(String text)
The word or line of text that's recognized by Amazon Textract.
text - The word or line of text that's recognized by Amazon Textract.
public Block withText(String text)
The word or line of text that's recognized by Amazon Textract.
Returns a reference to this object so that method calls can be chained together.
text - The word or line of text that's recognized by Amazon Textract.
public Integer getRowIndex()
The row in which a table cell is located. The first row position is 1.
RowIndex isn't returned by DetectDocumentText
and GetDocumentTextDetection.
Constraints:
Range: 0 -
The row in which a table cell is located. The first row position
is 1. RowIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public void setRowIndex(Integer rowIndex)
The row in which a table cell is located. The first row position is 1.
RowIndex isn't returned by DetectDocumentText
and GetDocumentTextDetection.
Constraints:
Range: 0 -
rowIndex -
The row in which a table cell is located. The first row
position is 1. RowIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Block withRowIndex(Integer rowIndex)
The row in which a table cell is located. The first row position is 1.
RowIndex isn't returned by DetectDocumentText
and GetDocumentTextDetection.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
rowIndex -
The row in which a table cell is located. The first row
position is 1. RowIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Integer getColumnIndex()
The column in which a table cell appears. The first column position is 1.
ColumnIndex isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
Constraints:
Range: 0 -
The column in which a table cell appears. The first column
position is 1. ColumnIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public void setColumnIndex(Integer columnIndex)
The column in which a table cell appears. The first column position is 1.
ColumnIndex isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
Constraints:
Range: 0 -
columnIndex -
The column in which a table cell appears. The first column
position is 1. ColumnIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Block withColumnIndex(Integer columnIndex)
The column in which a table cell appears. The first column position is 1.
ColumnIndex isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
columnIndex -
The column in which a table cell appears. The first column
position is 1. ColumnIndex isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Integer getRowSpan()
The number of rows that a table spans. RowSpan isn't
returned by DetectDocumentText and
GetDocumentTextDetection.
Constraints:
Range: 0 -
The number of rows that a table spans. RowSpan isn't
returned by DetectDocumentText and
GetDocumentTextDetection.
public void setRowSpan(Integer rowSpan)
The number of rows that a table spans. RowSpan isn't
returned by DetectDocumentText and
GetDocumentTextDetection.
Constraints:
Range: 0 -
rowSpan -
The number of rows that a table spans. RowSpan
isn't returned by DetectDocumentText and
GetDocumentTextDetection.
public Block withRowSpan(Integer rowSpan)
The number of rows that a table spans. RowSpan isn't
returned by DetectDocumentText and
GetDocumentTextDetection.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
rowSpan -
The number of rows that a table spans. RowSpan
isn't returned by DetectDocumentText and
GetDocumentTextDetection.
public Integer getColumnSpan()
The number of columns that a table cell spans. ColumnSpan
isn't returned by DetectDocumentText and
GetDocumentTextDetection.
Constraints:
Range: 0 -
The number of columns that a table cell spans.
ColumnSpan isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public void setColumnSpan(Integer columnSpan)
The number of columns that a table cell spans. ColumnSpan
isn't returned by DetectDocumentText and
GetDocumentTextDetection.
Constraints:
Range: 0 -
columnSpan -
The number of columns that a table cell spans.
ColumnSpan isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Block withColumnSpan(Integer columnSpan)
The number of columns that a table cell spans. ColumnSpan
isn't returned by DetectDocumentText and
GetDocumentTextDetection.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
columnSpan -
The number of columns that a table cell spans.
ColumnSpan isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Geometry getGeometry()
The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
public void setGeometry(Geometry geometry)
The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
geometry - The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
public Block withGeometry(Geometry geometry)
The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
Returns a reference to this object so that method calls can be chained together.
geometry - The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.
public String getId()
The identifier for the recognized text. The identifier is only unique for a single operation.
Constraints:
Pattern: .*\S.*
The identifier for the recognized text. The identifier is only unique for a single operation.
public void setId(String id)
The identifier for the recognized text. The identifier is only unique for a single operation.
Constraints:
Pattern: .*\S.*
id - The identifier for the recognized text. The identifier is only unique for a single operation.
public Block withId(String id)
The identifier for the recognized text. The identifier is only unique for a single operation.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Pattern: .*\S.*
id - The identifier for the recognized text. The identifier is only unique for a single operation.
public List<Relationship> getRelationships()
A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
public void setRelationships(Collection<Relationship> relationships)
A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
relationships - A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
public Block withRelationships(Relationship... relationships)
A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
Returns a reference to this object so that method calls can be chained together.
relationships - A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
public Block withRelationships(Collection<Relationship> relationships)
A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
Returns a reference to this object so that method calls can be chained together.
relationships - A list of child blocks of the current block. For example a LINE object has child blocks for each WORD block that's part of the line of text. There aren't Relationship objects in the list for relationships that don't exist, such as when the current block has no child blocks. The list size can be the following:
0 - The block has no child blocks.
1 - The block has child blocks.
public List<String> getEntityTypes()
The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public void setEntityTypes(Collection<String> entityTypes)
The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
entityTypes - The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Block withEntityTypes(String... entityTypes)
The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
Returns a reference to this object so that method calls can be chained together.
entityTypes - The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public Block withEntityTypes(Collection<String> entityTypes)
The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and GetDocumentTextDetection
.
Returns a reference to this object so that method calls can be chained together.
entityTypes - The type of entity. The following can be returned:
KEY - An identifier for a field on the document.
VALUE - The field text.
EntityTypes isn't returned by
DetectDocumentText and
GetDocumentTextDetection.
public String getSelectionStatus()
The selection status of a selectable element such as a radio button or checkbox.
Constraints:
Allowed Values: SELECTED, NOT_SELECTED
The selection status of a selectable element such as a radio button or checkbox.
SelectionStatuspublic void setSelectionStatus(String selectionStatus)
The selection status of a selectable element such as a radio button or checkbox.
Constraints:
Allowed Values: SELECTED, NOT_SELECTED
selectionStatus - The selection status of a selectable element such as a radio button or checkbox.
SelectionStatuspublic Block withSelectionStatus(String selectionStatus)
The selection status of a selectable element such as a radio button or checkbox.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: SELECTED, NOT_SELECTED
selectionStatus - The selection status of a selectable element such as a radio button or checkbox.
SelectionStatuspublic void setSelectionStatus(SelectionStatus selectionStatus)
The selection status of a selectable element such as a radio button or checkbox.
Constraints:
Allowed Values: SELECTED, NOT_SELECTED
selectionStatus - The selection status of a selectable element such as a radio button or checkbox.
SelectionStatuspublic Block withSelectionStatus(SelectionStatus selectionStatus)
The selection status of a selectable element such as a radio button or checkbox.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: SELECTED, NOT_SELECTED
selectionStatus - The selection status of a selectable element such as a radio button or checkbox.
SelectionStatuspublic Integer getPage()
The page in which a block was detected. Page is returned by
asynchronous operations. Page values greater than 1 are only returned for
multi-page documents that are in PDF format. A scanned image (JPG/PNG),
even if it contains multiple document pages, is always considered to be a
single-page document and the value of Page is always 1.
Synchronous operations don't return Page as every input
document is considered to be a single-page document.
Constraints:
Range: 0 -
The page in which a block was detected. Page is
returned by asynchronous operations. Page values greater than 1
are only returned for multi-page documents that are in PDF
format. A scanned image (JPG/PNG), even if it contains multiple
document pages, is always considered to be a single-page document
and the value of Page is always 1. Synchronous
operations don't return Page as every input document
is considered to be a single-page document.
public void setPage(Integer page)
The page in which a block was detected. Page is returned by
asynchronous operations. Page values greater than 1 are only returned for
multi-page documents that are in PDF format. A scanned image (JPG/PNG),
even if it contains multiple document pages, is always considered to be a
single-page document and the value of Page is always 1.
Synchronous operations don't return Page as every input
document is considered to be a single-page document.
Constraints:
Range: 0 -
page -
The page in which a block was detected. Page is
returned by asynchronous operations. Page values greater than
1 are only returned for multi-page documents that are in PDF
format. A scanned image (JPG/PNG), even if it contains
multiple document pages, is always considered to be a
single-page document and the value of Page is
always 1. Synchronous operations don't return
Page as every input document is considered to be
a single-page document.
public Block withPage(Integer page)
The page in which a block was detected. Page is returned by
asynchronous operations. Page values greater than 1 are only returned for
multi-page documents that are in PDF format. A scanned image (JPG/PNG),
even if it contains multiple document pages, is always considered to be a
single-page document and the value of Page is always 1.
Synchronous operations don't return Page as every input
document is considered to be a single-page document.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
page -
The page in which a block was detected. Page is
returned by asynchronous operations. Page values greater than
1 are only returned for multi-page documents that are in PDF
format. A scanned image (JPG/PNG), even if it contains
multiple document pages, is always considered to be a
single-page document and the value of Page is
always 1. Synchronous operations don't return
Page as every input document is considered to be
a single-page document.
public String toString()
toString in class ObjectObject.toString()Copyright © 2019. All rights reserved.