Uses of Interface
org.apache.lucene.util.Unwrappable
-
Packages that use Unwrappable Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of Unwrappable in org.apache.lucene.analysis
Classes in org.apache.lucene.analysis that implement Unwrappable Modifier and Type Class Description class
CachingTokenFilter
This class can be used if the token attributes of a TokenStream are intended to be consumed more than once.class
FilteringTokenFilter
Abstract base class for TokenFilters that may remove tokens.class
GraphTokenFilter
An abstract TokenFilter that exposes its input stream as a graphclass
LowerCaseFilter
Normalizes token text to lower case.class
StopFilter
Removes stop words from a token stream.class
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream. -
Uses of Unwrappable in org.apache.lucene.index
Classes in org.apache.lucene.index that implement Unwrappable Modifier and Type Class Description static class
FilterLeafReader.FilterPostingsEnum
Base class for filteringPostingsEnum
implementations.class
FilterMergePolicy
A wrapper forMergePolicy
instances.class
OneMergeWrappingMergePolicy
A wrapping merge policy that wraps theMergePolicy.OneMerge
objects returned by the wrapped merge policy.class
SoftDeletesRetentionMergePolicy
ThisMergePolicy
allows to carry over soft deleted documents across merges.class
UpgradeIndexMergePolicy
ThisMergePolicy
is used for upgrading all existing segments of an index when callingIndexWriter.forceMerge(int)
. -
Uses of Unwrappable in org.apache.lucene.search
Classes in org.apache.lucene.search that implement Unwrappable Modifier and Type Class Description class
FilterScorer
AFilterScorer
contains anotherScorer
, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
-