Uses of Class
org.wegra.util.collection.array.SetSort.Sorter

Packages that use SetSort.Sorter
org.wegra.util.collection.array   
 

Uses of SetSort.Sorter in org.wegra.util.collection.array
 

Fields in org.wegra.util.collection.array declared as SetSort.Sorter
static SetSort.Sorter SetSort.Sorter.QUICK_SORTER
          Build-in Sorter which uses quick sort algorithm.
static SetSort.Sorter SetSort.Sorter.INSERTION_SORTER
          Build-in Sorter which uses insertion sort algorithm.
 

Methods in org.wegra.util.collection.array with parameters of type SetSort.Sorter
static void SetSort.sort(java.lang.Object[] set, java.util.Comparator[] comps, SetSort.Sorter sorter)
          Sorts the specified set using set sort algorithm.
static void SetSort.sort(java.lang.Object[] set, int from, int to, java.util.Comparator[] comps, int compIndex, SetSort.Sorter sorter)
          Sorts the specified set using set sort algorithm.