Interface TableCell.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TableCell.Builder,
,TableCell> SdkBuilder<TableCell.Builder,
,TableCell> SdkPojo
- Enclosing class:
TableCell
public static interface TableCell.Builder
extends SdkPojo, CopyableBuilder<TableCell.Builder,TableCell>
-
Method Summary
Modifier and TypeMethodDescriptionTRUE
means that the table cell should be treated as a header.highlighted
(Boolean highlighted) TRUE
means that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.TRUE
if the response of the table cell is the top answer.The actual value or content within a table cell.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
value
The actual value or content within a table cell. A table cell could contain a date value of a year, or a string value of text, for example.
- Parameters:
value
- The actual value or content within a table cell. A table cell could contain a date value of a year, or a string value of text, for example.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topAnswer
TRUE
if the response of the table cell is the top answer. This is the cell value or content with the highest confidence score or is the most relevant to the query.- Parameters:
topAnswer
-TRUE
if the response of the table cell is the top answer. This is the cell value or content with the highest confidence score or is the most relevant to the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
highlighted
TRUE
means that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.- Parameters:
highlighted
-TRUE
means that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
header
TRUE
means that the table cell should be treated as a header.- Parameters:
header
-TRUE
means that the table cell should be treated as a header.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-