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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableCell.Builderheader(Boolean header)TRUEmeans that the table cell should be treated as a header.TableCell.Builderhighlighted(Boolean highlighted)TRUEmeans that the table cell has a high enough confidence and is relevant to the query, so the value or content should be highlighted.TableCell.BuildertopAnswer(Boolean topAnswer)TRUEif the response of the table cell is the top answer.TableCell.Buildervalue(String value)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 Detail
-
value
TableCell.Builder value(String 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
TableCell.Builder topAnswer(Boolean topAnswer)
TRUEif 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-TRUEif 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
TableCell.Builder highlighted(Boolean highlighted)
TRUEmeans 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-TRUEmeans 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
TableCell.Builder header(Boolean header)
TRUEmeans that the table cell should be treated as a header.- Parameters:
header-TRUEmeans 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.
-
-