TextSegmentType(value)
The type of TextSegment in the context of the original document.
Enums |
|
---|---|
Name | Description |
TEXT_SEGMENT_TYPE_UNSPECIFIED |
Should not be used. |
TOKEN |
The text segment is a token. e.g. word. |
PARAGRAPH |
The text segment is a paragraph. |
FORM_FIELD |
The text segment is a form field. |
FORM_FIELD_NAME |
The text segment is the name part of a form field. It will be treated as child of another FORM_FIELD TextSegment if its span is subspan of another TextSegment with type FORM_FIELD. |
FORM_FIELD_CONTENTS |
The text segment is the text content part of a form field. It will be treated as child of another FORM_FIELD TextSegment if its span is subspan of another TextSegment with type FORM_FIELD. |
TABLE |
The text segment is a whole table, including headers, and all rows. |
TABLE_HEADER |
The text segment is a table's headers. It will be treated as child of another TABLE TextSegment if its span is subspan of another TextSegment with type TABLE. |
TABLE_ROW |
The text segment is a row in table. It will be treated as child of another TABLE TextSegment if its span is subspan of another TextSegment with type TABLE. |
TABLE_CELL |
The text segment is a cell in table. It will be treated as child of another TABLE_ROW TextSegment if its span is subspan of another TextSegment with type TABLE_ROW. |