-
Classes Class Description org.apache.lucene.analysis.miscellaneous.FixBrokenOffsetsFilter Fix the token filters that create broken offsets in the first place.org.apache.lucene.analysis.miscellaneous.WordDelimiterFilter UseWordDelimiterGraphFilterinstead: it produces a correct token graph so that e.g.PhraseQueryworks correctly when it's used in the search time analyzer.org.apache.lucene.analysis.miscellaneous.WordDelimiterFilterFactory UseWordDelimiterGraphFilterFactoryinstead: it produces a correct token graph so that e.g.PhraseQueryworks correctly when it's used in the search time analyzer.org.apache.lucene.analysis.synonym.SynonymFilter UseSynonymGraphFilterinstead, but be sure to also useFlattenGraphFilterat index time (not at search time) as well.org.apache.lucene.analysis.synonym.SynonymFilterFactory UseSynonymGraphFilterFactoryinstead, but be sure to also useFlattenGraphFilterFactoryat index time (not at search time) as well.
-
Constructors Constructor Description org.apache.lucene.analysis.util.ClasspathResourceLoader() You should not use this ctor, because it uses the thread's context class loader, which is bad programming style. Please specify a reference class or aClassLoaderinstead.org.apache.lucene.analysis.util.FilesystemResourceLoader(Path) You should not use this ctor, because it uses the thread's context class loader as fallback for resource lookups, which is bad programming style. Please specify aClassLoaderinstead.