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
Methods in org.apache.lucene.analysis.compound that return HyphenationTree Modifier and Type Method Description static HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(File hyphenationFile)
Create a hyphenator treestatic HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(Reader hyphenationReader)
Deprecated.Don't use Readers with fixed charset to load XML files, unless programatically created.static HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(String hyphenationFilename)
Create a hyphenator treestatic HyphenationTree
HyphenationCompoundWordTokenFilter. getHyphenationTree(InputSource hyphenationSource)
Create a hyphenator treeConstructors in org.apache.lucene.analysis.compound with parameters of type HyphenationTree Constructor Description HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, String[] dictionary)
Deprecated.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, String[] dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, Set<?> dictionary)
Deprecated.HyphenationCompoundWordTokenFilter(TokenStream input, HyphenationTree hyphenator, Set<?> dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator)
Create a HyphenationCompoundWordTokenFilter with no dictionary.HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, int minWordSize, int minSubwordSize, int maxSubwordSize)
Create a HyphenationCompoundWordTokenFilter with no dictionary.HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, String[] dictionary)
Deprecated.Use the constructors takingSet
HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, String[] dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
Deprecated.Use the constructors takingSet
HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, Set<?> dictionary)
Creates a newHyphenationCompoundWordTokenFilter
instance.HyphenationCompoundWordTokenFilter(Version matchVersion, TokenStream input, HyphenationTree hyphenator, Set<?> dictionary, int minWordSize, int minSubwordSize, int maxSubwordSize, boolean onlyLongestMatch)
Creates a newHyphenationCompoundWordTokenFilter
instance.
-