Uses of Class
tech.tablesaw.sorting.Sort.Order
-
Packages that use Sort.Order Package Description tech.tablesaw.sorting -
-
Uses of Sort.Order in tech.tablesaw.sorting
Methods in tech.tablesaw.sorting that return Sort.Order Modifier and Type Method Description static Sort.OrderSort.Order. valueOf(String name)Returns the enum constant of this type with the specified name.static Sort.Order[]Sort.Order. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in tech.tablesaw.sorting that return types with arguments of type Sort.Order Modifier and Type Method Description Iterator<Map.Entry<String,Sort.Order>>Sort. iterator()Returns an iterator over elements of typeT.Methods in tech.tablesaw.sorting with parameters of type Sort.Order Modifier and Type Method Description 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 namestatic it.unimi.dsi.fastutil.ints.IntComparatorSortUtils. rowComparator(Column<?> column, Sort.Order order)Returns a comparator for the column matching the specified nameConstructors in tech.tablesaw.sorting with parameters of type Sort.Order Constructor Description Sort(String columnName, Sort.Order order)Constructs a Sort specifying the order (ascending or descending) to apply to the column with the given name
-