Uses of Interface
com.g11ntoolkit.sorter.Sorter.Comparer

Packages that use Sorter.Comparer
com.g11ntoolkit.sorter The set of classes that make up the Sorter support for the G11NToolKit. 
 

Uses of Sorter.Comparer in com.g11ntoolkit.sorter
 

Fields in com.g11ntoolkit.sorter declared as Sorter.Comparer
private static Sorter.Comparer Sorter.ascii_comparer
          An internal Comparer object (created with an anonymous class that compares two ASCII string objects.
private static Sorter.Comparer Sorter.token_comparer
          An internal Comparer object (created with an anonymous class that compares two Token objects.
private static Sorter.Comparer Sorter.comparable_comparer
          An internal Comparer object.
 

Methods in com.g11ntoolkit.sorter with parameters of type Sorter.Comparer
static void Sorter.sort(java.lang.Object[] a, Sorter.Comparer c)
          Sort an array of arbitrary objects into ascending order using the comparison defined by a Comparer object.
static void Sorter.sort(java.lang.Object[] a, int from, int to, boolean up, Sorter.Comparer c)
          Sort a portion of an array of arbitrary objects using the comparison defined by a Comparer object.
static void Sorter.sort(java.lang.Object[] a, java.lang.Object[] b, int from, int to, boolean up, Sorter.Comparer c)
          Main sort routine.