Interface Cell.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Cell.Builder,Cell>,SdkBuilder<Cell.Builder,Cell>,SdkPojo
- Enclosing class:
- Cell
public static interface Cell.Builder extends SdkPojo, CopyableBuilder<Cell.Builder,Cell>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cell.BuildercellReference(String cellReference)For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data.Cell.Buildercolumn(Long column)The column number of the column that contains the data.Cell.BuildercolumnName(String columnName)The name of the column that contains the data.Cell.Builderrow(Long row)The row number of the row that contains the data.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
column
Cell.Builder column(Long column)
The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.
- Parameters:
column- The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
row
Cell.Builder row(Long row)
The row number of the row that contains the data.
- Parameters:
row- The row number of the row that contains the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnName
Cell.Builder columnName(String columnName)
The name of the column that contains the data.
- Parameters:
columnName- The name of the column that contains the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cellReference
Cell.Builder cellReference(String cellReference)
For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.
- Parameters:
cellReference- For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-