Uses of Interface
org.passay.dictionary.sort.ArraySorter
-
Packages that use ArraySorter Package Description org.passay.dictionary org.passay.dictionary.sort -
-
Uses of ArraySorter in org.passay.dictionary
Methods in org.passay.dictionary with parameters of type ArraySorter Modifier and Type Method Description static ArrayWordList
WordLists. createFromReader(Reader[] readers, boolean caseSensitive, ArraySorter sorter)
Creates anArrayWordList
by reading the contents of the given file with support for sorting file contents.Constructors in org.passay.dictionary with parameters of type ArraySorter Constructor Description ArrayWordList(String[] array, boolean caseSensitive, ArraySorter sorter)
Creates a new word list backed by the given array with optional sorting of the input string array. -
Uses of ArraySorter in org.passay.dictionary.sort
Classes in org.passay.dictionary.sort that implement ArraySorter Modifier and Type Class Description class
ArraysSort
Delegates sorting toArrays.sort(Object[], Comparator)
.class
BubbleSort
Provides an implementation of the bubble sort algorithm.class
InsertionSort
Provides an implementation of the insertion sort algorithm.class
QuickSort
Provides an implementation of the quick sort algorithm.class
SelectionSort
Provides an implementation of the selection sort algorithm.
-