Uses of Class
tech.tablesaw.sorting.Sort
-
Packages that use Sort Package Description tech.tablesaw.api tech.tablesaw.sorting tech.tablesaw.table -
-
Uses of Sort in tech.tablesaw.api
Methods in tech.tablesaw.api with parameters of type Sort Modifier and Type Method Description TableTable. sortOn(Sort key)Returns a copy of this table sorted using the given sort key. -
Uses of Sort in tech.tablesaw.sorting
Methods in tech.tablesaw.sorting that return Sort Modifier and Type Method Description static SortSort. create(Table table, String... columnNames)Create a Sort object from the given table and sort column names.SortSort. next(String columnName, Sort.Order order)Returns a Sort that concatenates a new sort on the given order (ascending or descending) and columnName onto the sort specified here.static SortSort. on(String columnName, Sort.Order order)Returns a Sort specifying the order (ascending or descending) to apply to the column with the given nameMethods in tech.tablesaw.sorting with parameters of type Sort Modifier and Type Method Description static IntComparatorChainSortUtils. getChain(Table table, Sort key)Returns a comparator chain for sorting according to the given keystatic it.unimi.dsi.fastutil.ints.IntComparatorSortUtils. getComparator(Table table, Sort key)Returns a comparator that can be used to sort the records in this table according to the given sort key -
Uses of Sort in tech.tablesaw.table
Methods in tech.tablesaw.table with parameters of type Sort Modifier and Type Method Description voidTableSlice. sortOn(Sort key)Sort this view in place without modifying or copying the underlying source table.
-