Uses of Interface
org.passay.dictionary.WordList
-
Packages that use WordList Package Description org.passay.dictionary -
-
Uses of WordList in org.passay.dictionary
Classes in org.passay.dictionary that implement WordList Modifier and Type Class Description class
AbstractFileWordList
Common implementation for file based word lists.class
AbstractWordList
Provides common operations implementations for word lists.class
ArrayWordList
Provides aWordList
backed by a string array.class
FileWordList
Provides an implementation of aWordList
that is backed by a file.class
MemoryMappedFileWordList
Provides an implementation of aWordList
that is backed by a file and leverages aMappedByteBuffer
.Fields in org.passay.dictionary declared as WordList Modifier and Type Field Description protected WordList
WordListDictionary. wordList
list used for searching.Methods in org.passay.dictionary that return WordList Modifier and Type Method Description WordList
WordListDictionary. getWordList()
Returns the word list used for searching.Methods in org.passay.dictionary with parameters of type WordList Modifier and Type Method Description static int
WordLists. binarySearch(WordList wordList, String word)
Performs a binary search of the given word list for the given word.Constructors in org.passay.dictionary with parameters of type WordList Constructor Description TernaryTreeDictionary(WordList wordList)
Creates a new balanced tree dictionary from the suppliedWordList
.TernaryTreeDictionary(WordList wordList, boolean useMedian)
Creates a new dictionary instance from the givenWordList
.WordListDictionary(WordList wl)
Creates a new dictionary instance from the suppliedWordList
.
-