Uses of Interface
org.apache.lucene.analysis.hunspell.AffixCondition
Packages that use AffixCondition
Package
Description
A Java implementation of Hunspell stemming and
spell-checking algorithms (
Hunspell
), and a stemming
TokenFilter (HunspellStemFilter
) based on it.-
Uses of AffixCondition in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as AffixConditionModifier and TypeFieldDescriptionstatic final AffixCondition
AffixCondition.ALWAYS_FALSE
static final AffixCondition
AffixCondition.ALWAYS_TRUE
private final AffixCondition
WordFormGenerator.AffixEntry.condition
The field for thecondition
record component.Fields in org.apache.lucene.analysis.hunspell with type parameters of type AffixConditionModifier and TypeFieldDescription(package private) ArrayList
<AffixCondition> Dictionary.patterns
All condition checks used by prefixes and suffixes.Methods in org.apache.lucene.analysis.hunspell that return AffixConditionModifier and TypeMethodDescriptionstatic AffixCondition
Analyzes the given affix kind, strip and condition and returns an object able to efficiently check that condition.WordFormGenerator.AffixEntry.condition()
Returns the value of thecondition
record component.private AffixCondition
WordFormGenerator.condition
(int affixId) private static AffixCondition
AffixCondition.regexpCondition
(AffixKind kind, String condition, int charCount) private static AffixCondition
AffixCondition.substringCondition
(AffixKind kind, String stemCondition) Constructors in org.apache.lucene.analysis.hunspell with parameters of type AffixConditionModifierConstructorDescriptionprivate
AffixEntry
(int id, char flag, AffixKind kind, String affix, String strip, AffixCondition condition) Creates an instance of aAffixEntry
record class.