Package com.smartsheet.api.models
Class Cell.UpdateRowCellsBuilder
- java.lang.Object
-
- com.smartsheet.api.models.Cell.UpdateRowCellsBuilder
-
- Enclosing class:
- Cell
public static class Cell.UpdateRowCellsBuilder extends java.lang.ObjectA convenience class for quickly creating a List of cells to update.
-
-
Constructor Summary
Constructors Constructor Description UpdateRowCellsBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Cell.UpdateRowCellsBuilderaddCell(java.lang.Long columnId, java.lang.Object value)Adds the cell.Cell.UpdateRowCellsBuilderaddCell(java.lang.Long columnId, java.lang.Object value, java.lang.Boolean strict, Hyperlink hyperlink, CellLink linkInFromCell)Adds the cell.Cell.UpdateRowCellsBuilderaddCell(java.lang.Long columnId, java.lang.Object value, java.lang.Boolean strict, Hyperlink hyperlink, CellLink linkInFromCell, java.lang.Boolean overrideValidation)Adds the cell.java.util.List<Cell>build()Returns the list of cells.java.util.List<Cell>getCells()
-
-
-
Method Detail
-
addCell
public Cell.UpdateRowCellsBuilder addCell(java.lang.Long columnId, java.lang.Object value, java.lang.Boolean strict, Hyperlink hyperlink, CellLink linkInFromCell)
Adds the cell.- Parameters:
columnId- the column idvalue- the valuestrict- the stricthyperlink- the hyperlinklinkInFromCell- the link- Returns:
- the update row cells builder
-
addCell
public Cell.UpdateRowCellsBuilder addCell(java.lang.Long columnId, java.lang.Object value, java.lang.Boolean strict, Hyperlink hyperlink, CellLink linkInFromCell, java.lang.Boolean overrideValidation)
Adds the cell.- Parameters:
columnId- the column idvalue- the valuestrict- the stricthyperlink- the hyperlinklinkInFromCell- the linkoverrideValidation- the overrideValidation flag- Returns:
- the update row cells builder
-
addCell
public Cell.UpdateRowCellsBuilder addCell(java.lang.Long columnId, java.lang.Object value)
Adds the cell.- Parameters:
columnId- the column idvalue- the value- Returns:
- the update row cells builder
-
getCells
public java.util.List<Cell> getCells()
-
build
public java.util.List<Cell> build()
Returns the list of cells.- Returns:
- the list
-
-