Package ai.extend.types
Class TableDetails.Builder
- java.lang.Object
-
- ai.extend.types.TableDetails.Builder
-
- All Implemented Interfaces:
TableDetails._FinalStage,TableDetails.ColumnCountStage,TableDetails.RowCountStage
- Enclosing class:
- TableDetails
public static final class TableDetails.Builder extends java.lang.Object implements TableDetails.RowCountStage, TableDetails.ColumnCountStage, TableDetails._FinalStage
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TableDetailsbuild()TableDetails._FinalStagecolumnCount(int columnCount)The number of columns in the tableTableDetails.Builderfrom(TableDetails other)TableDetails.ColumnCountStagerowCount(int rowCount)The number of rows in the table
-
-
-
Method Detail
-
from
public TableDetails.Builder from(TableDetails other)
- Specified by:
fromin interfaceTableDetails.RowCountStage
-
rowCount
public TableDetails.ColumnCountStage rowCount(int rowCount)
The number of rows in the table
The number of rows in the table
- Specified by:
rowCountin interfaceTableDetails.RowCountStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
columnCount
public TableDetails._FinalStage columnCount(int columnCount)
The number of columns in the table
The number of columns in the table
- Specified by:
columnCountin interfaceTableDetails.ColumnCountStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
build
public TableDetails build()
- Specified by:
buildin interfaceTableDetails._FinalStage
-
-