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 Details

    • 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.