Package org.passay.dictionary.sort
Interface ArraySorter
- All Known Implementing Classes:
ArraysSort,BubbleSort,InsertionSort,QuickSort,SelectionSort
public interface ArraySorter
Interface for array sort implementations.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidThis will sort the supplied string array.voidsort(String[] array, Comparator<CharSequence> c) This will sort the supplied string array.
-
Method Details
-
sort
This will sort the supplied string array.- Parameters:
array- To sort
-
sort
This will sort the supplied string array.- Parameters:
array- To sortc- Comparator to sort with
-