Class SortHelper

java.lang.Object
com.sun.javafx.collections.SortHelper

public class SortHelper extends Object
Helper class that contains algorithms taken from JDK that additionally tracks the permutation that's created thorough the process
  • Constructor Details

    • SortHelper

      public SortHelper()
  • Method Details

    • sort

      public <T extends Comparable<? super T>> int[] sort(List<T> list)
    • sort

      public <T> int[] sort(List<T> list, Comparator<? super T> c)
    • sort

      public <T extends Comparable<? super T>> int[] sort(T[] a)
    • sort

      public <T> int[] sort(T[] a, Comparator<? super T> c)
    • sort

      public <T> int[] sort(T[] a, int fromIndex, int toIndex, Comparator<? super T> c)
    • sort

      public int[] sort(int[] a, int fromIndex, int toIndex)