Uses of Class
tech.tablesaw.table.TableSlice
-
Packages that use TableSlice Package Description tech.tablesaw.api tech.tablesaw.table -
-
Uses of TableSlice in tech.tablesaw.api
Constructors in tech.tablesaw.api with parameters of type TableSlice Constructor Description Row(TableSlice tableSlice)
Constructs a Row object for the given TableSliceRow(TableSlice tableSlice, int rowNumber)
Constructs a Row object for the given TableSlice, with the Row positioned at the given 0-based index -
Uses of TableSlice in tech.tablesaw.table
Methods in tech.tablesaw.table that return TableSlice Modifier and Type Method Description TableSlice
TableSlice. addColumns(Column<?>... column)
Adds the given columns to this Relation and returns the same relation.TableSlice
TableSliceGroup. get(int i)
Returns the ith slice in this groupTableSlice
TableSlice. removeColumns(Column<?>... columns)
Removes the given columns from this Relation and returns the same relation.TableSlice
TableSlice. setName(String name)
Sets the name of this Relation and returns the same relation.Methods in tech.tablesaw.table that return types with arguments of type TableSlice Modifier and Type Method Description List<TableSlice>
TableSliceGroup. getSlices()
Returns the slices as a listIterator<TableSlice>
TableSliceGroup. iterator()
Returns an iterator over elements of typeT
.Methods in tech.tablesaw.table with parameters of type TableSlice Modifier and Type Method Description protected void
TableSliceGroup. addSlice(TableSlice slice)
Add a slice to this group
-