Package ai.extend.types
Interface TableCellDetails._FinalStage
-
- All Known Implementing Classes:
TableCellDetails.Builder
- Enclosing class:
- TableCellDetails
public static interface TableCellDetails._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableCellDetailsbuild()TableCellDetails._FinalStagecellReference(java.lang.String cellReference)TableCellDetails._FinalStagecellReference(java.util.Optional<java.lang.String> cellReference)Source spreadsheet cell or range in A1 notation, such asB2orA1:C1for a merged cell.TableCellDetails._FinalStageformatting(CellFormatting formatting)TableCellDetails._FinalStageformatting(java.util.Optional<CellFormatting> formatting)Structured spreadsheet cell formatting.TableCellDetails._FinalStageformula(java.lang.String formula)TableCellDetails._FinalStageformula(java.util.Optional<java.lang.String> formula)Source spreadsheet formula text with a leading=, when the cell has a formula.
-
-
-
Method Detail
-
build
TableCellDetails build()
-
cellReference
TableCellDetails._FinalStage cellReference(java.util.Optional<java.lang.String> cellReference)
Source spreadsheet cell or range in A1 notation, such as
B2orA1:C1for a merged cell. Only set for Excel table cells whenadvancedOptions.excelIncludeCellMetadatais enabled.
-
cellReference
TableCellDetails._FinalStage cellReference(java.lang.String cellReference)
-
formula
TableCellDetails._FinalStage formula(java.util.Optional<java.lang.String> formula)
Source spreadsheet formula text with a leading
=, when the cell has a formula. Only set for Excel table cells whenadvancedOptions.excelIncludeCellMetadatais enabled.
-
formula
TableCellDetails._FinalStage formula(java.lang.String formula)
-
formatting
TableCellDetails._FinalStage formatting(java.util.Optional<CellFormatting> formatting)
Structured spreadsheet cell formatting. Only set when
advancedOptions.excelIncludeCellFormattingis enabled and formatting is present.
-
formatting
TableCellDetails._FinalStage formatting(CellFormatting formatting)
-
-