Uses of Class
sorter.SplitSort

Packages that use SplitSort
sorter A package containing classes performing the splitsort itself, i.e performs a quicksort while asking the results of the comparisons to other parts of the software. 
 

Uses of SplitSort in sorter
 

Fields in sorter with type parameters of type SplitSort
private  java.util.Map<java.lang.String,SplitSort> Comparator.sorters
          This map must have the following structure : [ key = axis considered, element = instance of SplitSort in charge of sorting media along this axis ].
 

Methods in sorter that return types with arguments of type SplitSort
 java.util.Map<java.lang.String,SplitSort> Comparator.getSplitSorts()
          Returns the sorters attribute.
 

Constructor parameters in sorter with type arguments of type SplitSort
Comparator(java.util.Map<java.lang.String,SplitSort> sorter)
          Creates a Comparator instance using the SplitSorts contained in the sorter map.
Comparator(java.util.Map<java.lang.String,SplitSort> sorter, MySQLbase bdd)
          Creates a Comparator instance using the SplitSorts contained in the sorter map and links it with a MySQLbase instance.