Interface CellInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CellInput.Builder,CellInput>,SdkBuilder<CellInput.Builder,CellInput>,SdkPojo
- Enclosing class:
- CellInput
public static interface CellInput.Builder extends SdkPojo, CopyableBuilder<CellInput.Builder,CellInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CellInput.Builderfact(String fact)Fact represents the data that is entered into a cell.CellInput.Builderfacts(String... facts)A list representing the values that are entered into a ROWSET cell.CellInput.Builderfacts(Collection<String> facts)A list representing the values that are entered into a ROWSET 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
-
fact
CellInput.Builder fact(String fact)
Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.
- Parameters:
fact- Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
facts
CellInput.Builder facts(Collection<String> facts)
A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.
- Parameters:
facts- A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
facts
CellInput.Builder facts(String... facts)
A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.
- Parameters:
facts- A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-