Uses of Class
org.apache.lucene.analysis.compound.hyphenation.HyphenationTree
-
Packages that use HyphenationTree Package Description org.apache.lucene.analysis.compound A filter that decomposes compound words you find in many Germanic languages into the word parts. -
-
Uses of HyphenationTree in org.apache.lucene.analysis.compound
Fields in org.apache.lucene.analysis.compound declared as HyphenationTree Modifier and Type Field Description private HyphenationTree
HyphenationCompoundWordTokenFilter. hyphenator
private HyphenationTree
HyphenationCompoundWordTokenFilterFactory. hyphenator
Methods in org.apache.lucene.analysis.compound that return HyphenationTree Modifier and Type Method Description static HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(java.lang.String hyphenationFilename)
Create a hyphenator treestatic HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(org.xml.sax.InputSource hyphenationSource)
Create a hyphenator treeConstructors in org.apache.lucene.analysis.compound with parameters of type HyphenationTree Constructor Description HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator)
Create a HyphenationCompoundWordTokenFilter with no dictionary.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, int minWordSize, int minSubwordSize, int maxSubwordSize)
Create a HyphenationCompoundWordTokenFilter with no dictionary.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary)
Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, CharArraySet dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch, boolean noSubMatches, boolean noOverlappingMatches)
Creates a newHyphenationCompoundWordTokenFilter
instance.
-