Uses of Package
org.apache.lucene.analysis
-
Packages that use org.apache.lucene.analysis Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.analysis.ar Analyzer for Arabic.org.apache.lucene.analysis.bg Analyzer for Bulgarian.org.apache.lucene.analysis.br Analyzer for Brazilian Portuguese.org.apache.lucene.analysis.ca Analyzer for Catalan.org.apache.lucene.analysis.charfilter CharFilters: process text before the Tokenizerorg.apache.lucene.analysis.cjk Analyzer for Chinese, Japanese, and Korean, which indexes bigrams (overlapping groups of two adjacent Han characters).org.apache.lucene.analysis.cn Analyzer for Chinese, which indexes unigrams (individual chinese characters).org.apache.lucene.analysis.cn.smart Analyzer for Simplified Chinese, which indexes words.org.apache.lucene.analysis.compound A filter that decomposes compound words you find in many Germanic languages into the word parts.org.apache.lucene.analysis.cz Analyzer for Czech.org.apache.lucene.analysis.da Analyzer for Danish.org.apache.lucene.analysis.de Analyzer for German.org.apache.lucene.analysis.el Analyzer for Greek.org.apache.lucene.analysis.en Analyzer for English.org.apache.lucene.analysis.es Analyzer for Spanish.org.apache.lucene.analysis.eu Analyzer for Basque.org.apache.lucene.analysis.fa Analyzer for Persian.org.apache.lucene.analysis.fi Analyzer for Finnish.org.apache.lucene.analysis.fr Analyzer for French.org.apache.lucene.analysis.ga Analysis for Irish.org.apache.lucene.analysis.gl Analyzer for Galician.org.apache.lucene.analysis.hi Analyzer for Hindi.org.apache.lucene.analysis.hu Analyzer for Hungarian.org.apache.lucene.analysis.hunspell Stemming TokenFilter using a Java implementation of the Hunspell stemming algorithm.org.apache.lucene.analysis.hy Analyzer for Armenian.org.apache.lucene.analysis.icu Analysis components based on ICUorg.apache.lucene.analysis.icu.segmentation Tokenizer that breaks text into words with the Unicode Text Segmentation algorithm.org.apache.lucene.analysis.id Analyzer for Indonesian.org.apache.lucene.analysis.in Analysis components for Indian languages.org.apache.lucene.analysis.it Analyzer for Italian.org.apache.lucene.analysis.ja Analyzer for Japanese.org.apache.lucene.analysis.lv Analyzer for Latvian.org.apache.lucene.analysis.miscellaneous Miscellaneous TokenStreamsorg.apache.lucene.analysis.ngram Character n-gram tokenizers and filters.org.apache.lucene.analysis.nl Analyzer for Dutch.org.apache.lucene.analysis.no Analyzer for Norwegian.org.apache.lucene.analysis.path Analysis components for path-like strings such as filenames.org.apache.lucene.analysis.payloads Provides various convenience classes for creating payloads on Tokens.org.apache.lucene.analysis.phonetic Analysis components for phonetic search.org.apache.lucene.analysis.pl Analyzer for Polish.org.apache.lucene.analysis.position Filter for assigning position increments.org.apache.lucene.analysis.pt Analyzer for Portuguese.org.apache.lucene.analysis.query Automatically filter high-frequency stopwords.org.apache.lucene.analysis.reverse Filter to reverse token text.org.apache.lucene.analysis.ro Analyzer for Romanian.org.apache.lucene.analysis.ru Analyzer for Russian.org.apache.lucene.analysis.shingle Word n-gram filtersorg.apache.lucene.analysis.sinks Implementations of the SinkTokenizer that might be useful.org.apache.lucene.analysis.snowball TokenFilter
andAnalyzer
implementations that use Snowball stemmers.org.apache.lucene.analysis.standard Standards-based analyzers implemented with JFlex.org.apache.lucene.analysis.stempel Stempel: Algorithmic Stemmerorg.apache.lucene.analysis.sv Analyzer for Swedish.org.apache.lucene.analysis.synonym Analysis components for Synonyms.org.apache.lucene.analysis.th Analyzer for Thai.org.apache.lucene.analysis.tr Analyzer for Turkish.org.apache.lucene.analysis.wikipedia Tokenizer that is aware of Wikipedia syntax.org.apache.lucene.benchmark.byTask Benchmarking Lucene By Tasks.org.apache.lucene.benchmark.byTask.tasks Extendable benchmark tasks.org.apache.lucene.collation CollationKeyFilter
converts each token into its binaryCollationKey
using the providedCollator
, and then encode theCollationKey
as a String usingIndexableBinaryStringTools
, to allow it to be stored as an index term.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.facet.enhancements Enhanced category featuresorg.apache.lucene.facet.enhancements.association Association category enhancementsorg.apache.lucene.facet.index Indexing of document categoriesorg.apache.lucene.facet.index.streaming Expert: attributes streaming definition for indexing facetsorg.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.queryParser A simple query parser implemented with JavaCC.org.apache.lucene.queryParser.analyzing QueryParser that passes Fuzzy-, Prefix-, Range-, and WildcardQuerys through the given analyzer.org.apache.lucene.queryParser.complexPhrase QueryParser which permits complex phrase query syntax eg "(john jon jonathan~) peters*"org.apache.lucene.queryParser.ext Extendable QueryParser provides a simple and flexible extension mechanism by overloading query field names.org.apache.lucene.queryParser.precedence This package contains the Precedence Query Parser Implementationorg.apache.lucene.queryParser.standard Contains the implementation of the Lucene query parser using the flexible query parser frameworksorg.apache.lucene.queryParser.standard.config Standard Lucene Query Configurationorg.apache.lucene.search Code to search indices.org.apache.lucene.search.highlight The highlight package contains classes to provide "keyword in context" features typically used to highlight search terms in the text of results pages.org.apache.lucene.search.similar Document similarity query generators.org.apache.lucene.store.instantiated InstantiatedIndex, alternative RAM store for small corpora.org.apache.lucene.util Some utility classes.org.apache.lucene.xmlparser Parser that produces Lucene Query objects from XML streams.org.apache.lucene.xmlparser.builders Builders to support various Lucene queries. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.BaseCharFilter Base utility class for implementing aCharFilter
.BaseTokenStreamTestCase.CheckClearAttributesAttribute Attribute that records if it was cleared or not.CharArrayMap A simple class that stores key Strings as char[]'s in a hash table.CharArrayMap.EntryIterator public iterator class so efficient methods are exposed to usersCharArrayMap.EntrySet public EntrySet class so efficient methods are exposed to usersCharArraySet A simple class that stores Strings as char[]'s in a hash table.CharFilter Subclasses of CharFilter can be chained to filter CharStream.CharStream CharStream addsCharStream.correctOffset(int)
functionality overReader
.CharTokenizer An abstract base class for simple, character-oriented tokenizers.FilteringTokenFilter Abstract base class for TokenFilters that may remove tokens.LetterTokenizer A LetterTokenizer is a tokenizer that divides text at non-letters.LookaheadTokenFilter An abstract TokenFilter to make it easier to build graph token filters requiring some lookahead.LookaheadTokenFilter.Position Holds all state for a single position; subclass this to record other state at each position.NormalizeCharMap Holds a map of String input to String output, to be used withMappingCharFilter
.NumericTokenStream Expert: This class provides aTokenStream
for indexing numeric values that can be used byNumericRangeQuery
orNumericRangeFilter
.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TeeSinkTokenFilter.SinkFilter A filter that decides whichAttributeSource
states to store in the sink.TeeSinkTokenFilter.SinkTokenStream TokenStream output from a tee with optional filtering.Token A Token is an occurrence of a term from the text of a field.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ar Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharTokenizer An abstract base class for simple, character-oriented tokenizers.LetterTokenizer A LetterTokenizer is a tokenizer that divides text at non-letters.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.bg Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.br Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ca Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.charfilter Class Description BaseCharFilter Base utility class for implementing aCharFilter
.CharFilter Subclasses of CharFilter can be chained to filter CharStream.CharStream CharStream addsCharStream.correctOffset(int)
functionality overReader
. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cjk Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cn Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cn.smart Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharArraySet A simple class that stores Strings as char[]'s in a hash table.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.compound Class Description CharArraySet A simple class that stores Strings as char[]'s in a hash table.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cz Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.da Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.de Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.el Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.en Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.es Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.eu Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.fa Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharFilter Subclasses of CharFilter can be chained to filter CharStream.CharStream CharStream addsCharStream.correctOffset(int)
functionality overReader
.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.fi Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.fr Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ga Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharArraySet A simple class that stores Strings as char[]'s in a hash table.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.gl Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hi Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hu Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hunspell Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hy Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.icu Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.icu.segmentation Class Description Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.id Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.in Class Description CharTokenizer An abstract base class for simple, character-oriented tokenizers.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.it Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ja Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharArraySet A simple class that stores Strings as char[]'s in a hash table.FilteringTokenFilter Abstract base class for TokenFilters that may remove tokens.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.lv Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.miscellaneous Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.Token A Token is an occurrence of a term from the text of a field.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ngram Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.nl Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharArrayMap A simple class that stores key Strings as char[]'s in a hash table.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.no Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.path Class Description Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.payloads Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.phonetic Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.pl Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.position Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.pt Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharArraySet A simple class that stores Strings as char[]'s in a hash table.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.query Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.reverse Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ro Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ru Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.CharTokenizer An abstract base class for simple, character-oriented tokenizers.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.shingle Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.Token A Token is an occurrence of a term from the text of a field.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.sinks Class Description TeeSinkTokenFilter.SinkFilter A filter that decides whichAttributeSource
states to store in the sink. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.snowball Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.standard Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.stempel Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.sv Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.synonym Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.th Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.tr Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.ReusableAnalyzerBase An convenience subclass of Analyzer that makes it easy to implementTokenStream
reuse.ReusableAnalyzerBase.TokenStreamComponents This class encapsulates the outer components of a token stream.StopwordAnalyzerBase Base class for Analyzers that need to make use of stopword sets.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.wikipedia Class Description Tokenizer A Tokenizer is a TokenStream whose input is a Reader.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.benchmark.byTask Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.benchmark.byTask.tasks Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.collation Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.document Class Description TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.enhancements Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.enhancements.association Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.index Class Description TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.index.streaming Class Description TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.index Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.index.memory Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.analyzing Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.complexPhrase Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.ext Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.precedence Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.standard Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.standard.config Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.search Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.search.highlight Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.Token A Token is an occurrence of a term from the text of a field.TokenFilter A TokenFilter is a TokenStream whose input is another TokenStream.TokenStream -
Classes in org.apache.lucene.analysis used by org.apache.lucene.search.similar Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.store.instantiated Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.util Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.xmlparser Class Description Analyzer An Analyzer builds TokenStreams, which analyze text. -
Classes in org.apache.lucene.analysis used by org.apache.lucene.xmlparser.builders Class Description Analyzer An Analyzer builds TokenStreams, which analyze text.