Uses of Package
org.apache.lucene.analysis

Packages that use org.apache.lucene.analysis
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.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.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 ICU 
org.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.lv Analyzer for Latvian. 
org.apache.lucene.analysis.miscellaneous Miscellaneous TokenStreams 
org.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   
org.apache.lucene.analysis.payloads
Provides various convenience classes for creating payloads on Tokens. 
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 filters 
org.apache.lucene.analysis.sinks
Implementations of the SinkTokenizer that might be useful. 
org.apache.lucene.analysis.snowball TokenFilter and Analyzer implementations that use Snowball stemmers. 
org.apache.lucene.analysis.standard The org.apache.lucene.analysis.standard package contains three fast grammar-based tokenizers constructed with JFlex: 
org.apache.lucene.analysis.stempel Stempel: Algorithmic Stemmer 
org.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 binary CollationKey using the provided Collator, and then encode the CollationKey as a String using IndexableBinaryStringTools, to allow it to be stored as an index term. 
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
org.apache.lucene.facet.enhancements Enhanced category features 
org.apache.lucene.facet.enhancements.association Association category enhancements 
org.apache.lucene.facet.index Indexing of document categories 
org.apache.lucene.facet.index.streaming Expert: attributes streaming definition for indexing facets 
org.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 Implementation 
org.apache.lucene.queryParser.standard Contains the implementation of the Lucene query parser using the flexible query parser frameworks 
org.apache.lucene.queryParser.standard.config Standard Lucene Query Configuration 
org.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.xmlparser Parser that produces Lucene Query objects from XML streams. 
org.apache.lucene.xmlparser.builders   
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
BaseCharFilter
          Base utility class for implementing a CharFilter.
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 users
CharArrayMap.EntrySet
          public EntrySet class so efficient methods are exposed to users
CharArraySet
          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 adds CharStream.correctOffset(int) functionality over Reader.
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.
NormalizeCharMap
          Holds a map of String input to String output, to be used with MappingCharFilter.
NumericTokenStream
          Expert: This class provides a TokenStream for indexing numeric values that can be used by NumericRangeQuery or NumericRangeFilter.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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 which AttributeSource states to store in the sink.
TeeSinkTokenFilter.SinkTokenStream
           
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ar
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 implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.bg
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.br
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ca
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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.cjk
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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.
Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cn
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cn.smart
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.compound
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.cz
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.da
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.el
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.en
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.es
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.eu
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
CharFilter
          Subclasses of CharFilter can be chained to filter CharStream.
CharStream
          CharStream adds CharStream.correctOffset(int) functionality over Reader.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.fi
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.fr
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.gl
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hi
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hu
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hunspell
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.hy
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.icu.segmentation
Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.id
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.in
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.it
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.lv
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.miscellaneous
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ngram
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.nl
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.no
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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.path
Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.payloads
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.pl
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.pt
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 implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.query
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.reverse
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.ro
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
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 implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.shingle
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.sinks
TeeSinkTokenFilter.SinkFilter
          A filter that decides which AttributeSource states to store in the sink.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.snowball
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.standard
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.stempel
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.sv
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.synonym
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.th
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.tr
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
ReusableAnalyzerBase
          An convenience subclass of Analyzer that makes it easy to implement TokenStream 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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.analysis.wikipedia
Tokenizer
          A Tokenizer is a TokenStream whose input is a Reader.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.benchmark.byTask
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.benchmark.byTask.tasks
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.collation
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.document
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.enhancements
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.enhancements.association
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.index
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.facet.index.streaming
TokenFilter
          A TokenFilter is a TokenStream whose input is another TokenStream.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.index
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.index.memory
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
TokenStream
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.analyzing
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.complexPhrase
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.ext
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.precedence
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.standard
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.queryParser.standard.config
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.search
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.search.highlight
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
          A TokenStream enumerates the sequence of tokens, either from Fields of a Document or from query text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.search.similar
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.store.instantiated
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.xmlparser
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 

Classes in org.apache.lucene.analysis used by org.apache.lucene.xmlparser.builders
Analyzer
          An Analyzer builds TokenStreams, which analyze text.
 



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.