Package org.apache.solr.util
Class PrimUtils
- java.lang.Object
- 
- org.apache.solr.util.PrimUtils
 
- 
 public class PrimUtils extends Object Utilities for primitive Java data types.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classPrimUtils.IntComparator
 - 
Constructor SummaryConstructors Constructor Description PrimUtils()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voidsort(int start, int end, int[] array, PrimUtils.IntComparator comparator)Sort the integer array from "start" inclusive to "end" exclusive in ascending order, using the provided comparator.
 
- 
- 
- 
Method Detail- 
sortpublic static void sort(int start, int end, int[] array, PrimUtils.IntComparator comparator)Sort the integer array from "start" inclusive to "end" exclusive in ascending order, using the provided comparator. TODO: is this an unstable sort?
 
- 
 
-