Uses of Enum Class
org.apache.lucene.analysis.hunspell.WordCase
Packages that use WordCase
Package
Description
A Java implementation of Hunspell stemming and
spell-checking algorithms (
Hunspell), and a stemming
TokenFilter (HunspellStemFilter) based on it.-
Uses of WordCase in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as WordCaseMethods in org.apache.lucene.analysis.hunspell that return WordCaseModifier and TypeMethodDescription(package private) WordCaseStemmer.caseOf(char[] word, int length) returns EXACT_CASE,TITLE_CASE, or UPPER_CASE type for the word(package private) static WordCaseWordCase.caseOf(char[] word, int length) (package private) static WordCaseWordCase.caseOf(CharSequence word) (package private) static WordCaseWordCase.caseOf(CharSequence word, int length) private static WordCaseWordCase.get(WordCase.CharCase startCase, boolean seenUpper, boolean seenLower) static WordCaseReturns the enum constant of this class with the specified name.static WordCase[]WordCase.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.lucene.analysis.hunspell with parameters of type WordCaseModifier and TypeMethodDescriptionprivate booleanHunspell.acceptCase(WordCase originalCase, int entryId, CharsRef root) private StringSuggestion.adjustSuggestionCase(String candidate, String misspelled, WordCase originalCase) private booleanHunspell.checkCompoundPatternReplacements(CharsRef word, int pos, WordCase originalCase, Hunspell.CompoundPart prev) private booleanHunspell.checkCompounds(char[] wordChars, int length, WordCase originalCase) private booleanHunspell.checkCompounds(CharsRef word, WordCase originalCase, Hunspell.CompoundPart prev) private booleanHunspell.checkCompoundsAfter(WordCase originalCase, Hunspell.CompoundPart prev) (package private) BooleanHunspell.checkSimpleWord(char[] wordChars, int length, WordCase originalCase) private booleanprivate List<GeneratingSuggester.Weighted<Root<String>>> GeneratingSuggester.findSimilarDictionaryEntries(String word, WordCase originalCase) Hunspell.findStem(char[] wordChars, int offset, int length, WordCase originalCase, WordContext context) private booleanHunspell.hasForceUCaseProblem(Root<?> root, WordCase originalCase, char[] wordChars) private booleanHunspell.CompoundPart.isMisspelledSimpleWord(int length, WordCase originalCase) (package private) booleanHunspell.CompoundPart.mayCompound(Root<CharsRef> nextRoot, int nextPartLength, WordCase originalCase) booleanGeneratingSuggester.suggest(String word, WordCase originalCase, Set<Suggestion> prevSuggestions) (package private) booleanStemmer.varyCase(char[] word, int length, WordCase wordCase, Stemmer.CaseVariationProcessor processor) Constructors in org.apache.lucene.analysis.hunspell with parameters of type WordCaseModifierConstructorDescription(package private)ModifyingSuggester(Hunspell speller, LinkedHashSet<Suggestion> result, String misspelled, WordCase wordCase, FragmentChecker checker) (package private)Suggestion(String raw, String misspelled, WordCase originalCase, Hunspell speller)