public interface IQuickSort
| Modifier and Type | Method and Description |
|---|---|
io.vavr.control.Try<DataView> |
quickSort(Integer columnIndex)
Table QuickSort by single column index.
|
io.vavr.control.Try<DataView> |
quickSort(Integer columnIndex,
SortOrder sortOrder)
Table QuickSort by single column index and a sort order.
|
io.vavr.control.Try<DataView> |
quickSort(Iterable<SortItem> sortItems)
Table QuickSort by multiple sort items.
|
io.vavr.control.Try<DataView> |
quickSort(SortItem sortItem)
Table QuickSort by single sort item.
|
io.vavr.control.Try<DataView> |
quickSort(String columnName)
Table QuickSort by single column name.
|
io.vavr.control.Try<DataView> |
quickSort(String columnName,
SortOrder sortOrder)
Table QuickSort by single column name and a sort order.
|
io.vavr.control.Try<DataView> quickSort(String columnName)
columnName - The column name to sort.io.vavr.control.Try<DataView> quickSort(String columnName, SortOrder sortOrder)
columnName - The column name to sort.sortOrder - The sort order.io.vavr.control.Try<DataView> quickSort(Integer columnIndex)
columnIndex - The column index to sort.io.vavr.control.Try<DataView> quickSort(Integer columnIndex, SortOrder sortOrder)
columnIndex - The column index to sort.sortOrder - The sort order.io.vavr.control.Try<DataView> quickSort(SortItem sortItem)
sortItem - The sort item.Copyright © 2017. All rights reserved.