- indexOf(String, String...) - Static method in class com.mindprod.common15.StringSearch
-
find first of a number of possible targets.
- indexOf(String, int, String...) - Static method in class com.mindprod.common15.StringSearch
-
find first of a number of possible targets.
- indexOfEnd(String, String...) - Static method in class com.mindprod.common15.StringSearch
-
find first of a number of possible targets
- indexOfEnd(String, int, String...) - Static method in class com.mindprod.common15.StringSearch
-
find first of a number of possible targets
- InOrder - Class in com.mindprod.common15
-
Are arrays/collections already in order?
Generics for these methods were cannibalised from Arrays.sort and Collections.sort.
- InOrder() - Constructor for class com.mindprod.common15.InOrder
-
- inOrder(Comparable[]) - Static method in class com.mindprod.common15.InOrder
-
Is this array already in order according to its Comparable interface?
Generics and arrays don't get along well.
- inOrder(List<T>) - Static method in class com.mindprod.common15.InOrder
-
Is this List already in order according to its Comparable interface?
- inOrder(T[], Comparator<? super T>) - Static method in class com.mindprod.common15.InOrder
-
Is this array already in order according to a given Comparator?
- inOrder(List<T>, Comparator<? super T>) - Static method in class com.mindprod.common15.InOrder
-
Is this List already in order according to a given Comparator?