Package | Description |
---|---|
org.apache.lucene.analysis |
Text analysis.
|
org.apache.lucene.analysis.ar |
Analyzer for Arabic.
|
org.apache.lucene.analysis.bg |
Analyzer for Bulgarian.
|
org.apache.lucene.analysis.bn |
Analyzer for Bengali Language.
|
org.apache.lucene.analysis.br |
Analyzer for Brazilian Portuguese.
|
org.apache.lucene.analysis.ca |
Analyzer for Catalan.
|
org.apache.lucene.analysis.charfilter |
Normalization of text before the tokenizer.
|
org.apache.lucene.analysis.cjk |
Analyzer for Chinese, Japanese, and Korean, which indexes bigrams.
|
org.apache.lucene.analysis.ckb |
Analyzer for Sorani Kurdish.
|
org.apache.lucene.analysis.cn.smart |
Analyzer for Simplified Chinese, which indexes words.
|
org.apache.lucene.analysis.commongrams |
Construct n-grams for frequently occurring terms and phrases.
|
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.core |
Basic, general-purpose analysis components.
|
org.apache.lucene.analysis.custom |
A general-purpose Analyzer that can be created with a builder-style API.
|
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 |
Analyzer 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.id |
Analyzer for Indonesian.
|
org.apache.lucene.analysis.in |
Analyzer for Indian languages.
|
org.apache.lucene.analysis.it |
Analyzer for Italian.
|
org.apache.lucene.analysis.lt |
Analyzer for Lithuanian.
|
org.apache.lucene.analysis.lv |
Analyzer for Latvian.
|
org.apache.lucene.analysis.minhash |
MinHash filtering (for LSH).
|
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 |
Analysis components for path-like strings such as filenames.
|
org.apache.lucene.analysis.pattern |
Set of components for pattern-based (regex) analysis.
|
org.apache.lucene.analysis.payloads |
Provides various convenience classes for creating payloads on Tokens.
|
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 | |
org.apache.lucene.analysis.snowball |
TokenFilter and Analyzer implementations that use Snowball
stemmers. |
org.apache.lucene.analysis.sr |
Analyzer for Serbian.
|
org.apache.lucene.analysis.standard |
Fast, general-purpose grammar-based tokenizer
StandardTokenizer
implements the Word Break rules from the Unicode Text Segmentation algorithm, as specified in
Unicode Standard Annex #29. |
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.util |
Utility functions for text analysis.
|
org.apache.lucene.analysis.wikipedia |
Tokenizer that is aware of Wikipedia syntax.
|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.collation |
Unicode collation support.
|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
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.queries.mlt |
Document similarity query generators.
|
org.apache.lucene.queryparser.classic |
A simple query parser implemented with JavaCC.
|
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.flexible.precedence |
Precedence Query Parser Implementation
|
org.apache.lucene.queryparser.flexible.standard |
Implementation of the Lucene classic query parser using the flexible query parser frameworks
|
org.apache.lucene.queryparser.flexible.standard.config |
Standard Lucene Query Configuration.
|
org.apache.lucene.queryparser.flexible.standard.processors |
Lucene Query Node Processors.
|
org.apache.lucene.queryparser.simple |
A simple query parser for human-entered queries.
|
org.apache.lucene.queryparser.xml |
Parser that produces Lucene Query objects from XML streams.
|
org.apache.lucene.queryparser.xml.builders |
XML Parser factories for different Lucene Query/Filters.
|
org.apache.lucene.sandbox.queries |
Additional queries (some may have caveats or limitations)
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.search.highlight |
Highlighting search terms.
|
org.apache.lucene.search.uhighlight |
The UnifiedHighlighter -- a flexible highlighter that can get offsets from postings, term vectors, or analysis.
|
org.apache.lucene.util |
Some utility classes.
|
org.apache.lucene.util.graph |
Utility classes for working with token streams as graphs.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.ReuseStrategy
Strategy defining how TokenStreamComponents are reused per call to
Analyzer.tokenStream(String, java.io.Reader) . |
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
AnalyzerWrapper
Extension to
Analyzer suitable for Analyzers which wrap
other Analyzers. |
CharacterUtils.CharacterBuffer
A simple IO buffer to use with
CharacterUtils.fill(CharacterBuffer, Reader) . |
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
|
CharArrayMap.UnmodifiableCharArrayMap |
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
DelegatingAnalyzerWrapper
An analyzer wrapper, that doesn't allow to wrap components or readers.
|
FilteringTokenFilter
Abstract base class for TokenFilters that may remove tokens.
|
GraphTokenFilter.Token |
ReusableStringReader
Internal class to enable reuse of the string reader by
Analyzer.tokenStream(String,String) |
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
TokenStreamToAutomaton.Position |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
CharArrayMap
A simple class that stores key Strings as char[]'s in a
hash table.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
CharFilter
Subclasses of CharFilter can be chained to filter a Reader
They can be used as
Reader with additional offset
correction. |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
Class and 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 |
Class and 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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
FilteringTokenFilter
Abstract base class for TokenFilters that may remove tokens.
|
LowerCaseFilter
Normalizes token text to lower case.
|
StopFilter
Removes stop words from 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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArrayMap
A simple class that stores key Strings as char[]'s in a
hash table.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
CharFilter
Subclasses of CharFilter can be chained to filter a Reader
They can be used as
Reader with additional offset
correction. |
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
AnalyzerWrapper
Extension to
Analyzer suitable for Analyzers which wrap
other Analyzers. |
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
DelegatingAnalyzerWrapper
An analyzer wrapper, that doesn't allow to wrap components or readers.
|
FilteringTokenFilter
Abstract base class for TokenFilters that may remove tokens.
|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
TokenStreamToAutomaton
Consumes a TokenStream and creates an
Automaton
where the transition labels are UTF8 bytes (or Unicode
code points if unicodeArcs is true) from the TermToBytesRefAttribute . |
Class and Description |
---|
CharacterUtils.CharacterBuffer
A simple IO buffer to use with
CharacterUtils.fill(CharacterBuffer, Reader) . |
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArrayMap
A simple class that stores key Strings as char[]'s in a
hash table.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
Class and Description |
---|
CharFilter
Subclasses of CharFilter can be chained to filter a Reader
They can be used as
Reader with additional offset
correction. |
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
AnalyzerWrapper
Extension to
Analyzer suitable for Analyzers which wrap
other Analyzers. |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
StopwordAnalyzerBase
Base class for Analyzers that need to make use of stopword sets.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
AnalyzerWrapper
Extension to
Analyzer suitable for Analyzers which wrap
other Analyzers. |
GraphTokenFilter
An abstract TokenFilter that exposes its input stream as a graph
Call
GraphTokenFilter.incrementBaseToken() to move the root of the graph to the next
position in the TokenStream, GraphTokenFilter.incrementGraphToken() to move along
the current graph, and GraphTokenFilter.incrementGraph() to reset to the next graph
based at the current root. |
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and 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 |
Class and Description |
---|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
CharArraySet
A simple class that stores Strings as char[]'s in a
hash table.
|
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 |
Class and Description |
---|
CharacterUtils.CharacterBuffer
A simple IO buffer to use with
CharacterUtils.fill(CharacterBuffer, Reader) . |
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 |
Class and Description |
---|
Tokenizer
A Tokenizer is a TokenStream whose input is a Reader.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Analyzer.TokenStreamComponents
This class encapsulates the outer components of a token stream.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
Class and Description |
---|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
FilteringTokenFilter
Abstract base class for TokenFilters that may remove tokens.
|
TokenFilter
A TokenFilter is a TokenStream whose input is another TokenStream.
|
TokenStream |
Class and Description |
---|
Analyzer
An Analyzer builds TokenStreams, which analyze text.
|
TokenStream |
Class and Description |
---|
TokenStream |