| Package | Description |
|---|---|
| tech.tablesaw.sorting |
| Modifier and Type | Method | Description |
|---|---|---|
static Sort.Order |
Sort.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.
|
| Modifier and Type | Method | Description |
|---|---|---|
Iterator<Map.Entry<String,Sort.Order>> |
Sort.iterator() |
Returns an iterator over elements of type
T. |
| Modifier and Type | Method | Description |
|---|---|---|
Sort |
Sort.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 Sort |
Sort.on(String columnName,
Sort.Order order) |
Returns a Sort specifying the order (ascending or descending) to apply to the column with the
given name
|
static it.unimi.dsi.fastutil.ints.IntComparator |
SortUtils.rowComparator(Column<?> column,
Sort.Order order) |
Returns a comparator for the column matching the specified name
|
| 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
|
Copyright © 2022. All rights reserved.