Interface IQuickSort
- All Known Subinterfaces:
IBaseTable
public interface IQuickSort
Created by Martin Cooper on 29/07/2017.
-
Method Summary
Modifier and TypeMethodDescriptionio.vavr.control.Try<DataView>Table QuickSort by single sort item.io.vavr.control.Try<DataView>Table QuickSort by single column index.io.vavr.control.Try<DataView>Table QuickSort by single column index and a sort order.io.vavr.control.Try<DataView>Table QuickSort by multiple sort items.io.vavr.control.Try<DataView>Table QuickSort by single column name.io.vavr.control.Try<DataView>Table QuickSort by single column name and a sort order.
-
Method Details
-
quickSort
Table QuickSort by single column name.- Parameters:
columnName- The column name to sort.- Returns:
- Returns the results as a sorted Data View.
-
quickSort
Table QuickSort by single column name and a sort order.- Parameters:
columnName- The column name to sort.sortOrder- The sort order.- Returns:
- Returns the results as a sorted Data View.
-
quickSort
Table QuickSort by single column index.- Parameters:
columnIndex- The column index to sort.- Returns:
- Returns the results as a sorted Data View.
-
quickSort
Table QuickSort by single column index and a sort order.- Parameters:
columnIndex- The column index to sort.sortOrder- The sort order.- Returns:
- Returns the results as a sorted Data View.
-
quickSort
Table QuickSort by single sort item.- Parameters:
sortItem- The sort item.- Returns:
- Returns the results as a sorted Data View.
-
quickSort
Table QuickSort by multiple sort items.- Parameters:
sortItems- The sort items.- Returns:
- Returns the results as a sorted Data View.
-