Frames | No Frames |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for Thai language. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Filters CJKTokenizer with StopFilter. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for French language. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
Query | Perform synonym expansion on a query. |
Query | Perform synonym expansion on a query. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for German language. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for Russian language. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Creates a MultiFieldQueryParser. | |
Creates a MultiFieldQueryParser. | |
Constructs a query parser. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
Query | MultiFieldQueryParser.parse(String query, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer) Parses a query, searching on the fields specified. |
Query | Parses a query which searches on the fields specified. |
Query | MultiFieldQueryParser.parse(String[] queries, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer) Parses a query, searching on the fields specified. |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Title: ChineseAnalyzer
Description:
Subclass of org.apache.lucene.analysis.Analyzer
build from a ChineseTokenizer, filtered with ChineseFilter. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Constructs a query parser. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
Query[] | Parse the strings containing Lucene queries. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
TokenStream | A convenience method that tries a number of approaches to getting a token stream. |
String | Highlights chosen terms in a text, extracting the most relevant section. |
String[] | Highlights chosen terms in a text, extracting the most relevant sections. |
String[] | Highlights chosen terms in a text, extracting the most relevant sections. |
TokenStream |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for Brazilian language. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for the Greek language. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Constructs a query parser. |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | "Tokenizes" the entire stream as a single token. |
class | This analyzer is used to facilitate scenarios where different
fields require different analysis techniques. |
class | An Analyzer that filters LetterTokenizer with LowerCaseFilter. |
class | Filters LetterTokenizer with LowerCaseFilter and StopFilter. |
class | An Analyzer that uses WhitespaceTokenizer. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Constructs with default analyzer. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
void | Defines an analyzer to use for the specified field. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
TestData[] | Prepare a list of benchmark data, using all possible combinations of
benchmark parameters. |
TestData[] | Similar to getAll(java.io.File[], org.apache.lucene.analysis.Analyzer[]) but only uses
maxBufferedDocs of 10 and 100 and same for mergeFactor, thus reducing the number of permutations significantly. |
void |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Filters StandardTokenizer with StandardFilter , LowerCaseFilter and StopFilter , using a list of English stop words. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for Czech language. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Analyzer for Dutch language. |
Classes derived from org.apache.lucene.analysis.Analyzer | |
class | Efficient Lucene analyzer/tokenizer that preferably operates on a String rather than a
Reader , that can flexibly separate text into terms via a regular expression Pattern
(with behaviour identical to String.split(String) ),
and that combines the functionality of
LetterTokenizer ,
LowerCaseTokenizer ,
WhitespaceTokenizer ,
StopFilter into a single efficient
multi-purpose class. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
void | Convenience method; Tokenizes the given field text and adds the resulting
terms to the index; Equivalent to adding an indexed non-keyword Lucene
Field that is
tokenized ,
not stored ,
termVectorStored with positions (or
termVectorStored with positions and offsets ),
|
Analyzer | Returns a simple analyzer wrapper that logs all tokens produced by the
underlying child analyzer to the given log stream (typically System.err);
Otherwise behaves exactly like the child analyzer, delivering the very
same tokens; useful for debugging purposes on custom indexing and/or
querying. |
Analyzer | Returns an analyzer wrapper that returns at most the first
maxTokens tokens from the underlying child analyzer,
ignoring all remaining tokens. |
String[] | Returns (frequency:term) pairs for the top N distinct terms (aka words),
sorted descending by frequency (and ascending by term, if tied). |
Analyzer | Returns an English stemming analyzer that stems tokens from the
underlying child analyzer according to the Porter stemming algorithm. |
Analyzer | Returns an analyzer wrapper that wraps the underlying child analyzer's
token stream into a SynonymTokenFilter . |
Analyzer | Returns an analyzer wrapper that caches all tokens generated by the underlying child analyzer's
token streams, and delivers those cached tokens on subsequent calls to
tokenStream(String fieldName, Reader reader)
if the fieldName has been seen before, altogether ignoring the Reader parameter on cache lookup. |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer | Returns a simple analyzer wrapper that logs all tokens produced by the
underlying child analyzer to the given log stream (typically System.err);
Otherwise behaves exactly like the child analyzer, delivering the very
same tokens; useful for debugging purposes on custom indexing and/or
querying. |
Analyzer | Returns an analyzer wrapper that returns at most the first
maxTokens tokens from the underlying child analyzer,
ignoring all remaining tokens. |
Analyzer | Returns an English stemming analyzer that stems tokens from the
underlying child analyzer according to the Porter stemming algorithm. |
Analyzer | Returns an analyzer wrapper that wraps the underlying child analyzer's
token stream into a SynonymTokenFilter . |
Analyzer | Returns an analyzer wrapper that caches all tokens generated by the underlying child analyzer's
token streams, and delivers those cached tokens on subsequent calls to
tokenStream(String fieldName, Reader reader)
if the fieldName has been seen before, altogether ignoring the Reader parameter on cache lookup. |
Constructors with parameter type org.apache.lucene.analysis.Analyzer | |
Open an index with write access. | |
Open an index with write access. | |
Open an index with write access. | |
Constructs an IndexWriter for the index in
path , creating it first if it does not
already exist, otherwise appending to the existing
index. | |
Constructs an IndexWriter for the index in path . | |
Constructs an IndexWriter for the index in
path , creating it first if it does not
already exist, otherwise appending to the existing
index. | |
Constructs an IndexWriter for the index in path . | |
Constructs an IndexWriter for the index in
d , creating it first if it does not
already exist, otherwise appending to the existing
index. | |
Constructs an IndexWriter for the index in d . |
Fields of type org.apache.lucene.analysis.Analyzer | |
Analyzer |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
void | Adds a document to this index, using the provided analyzer instead of the
one specific in the constructor. |
void | Adds a document to this index, using the provided analyzer instead of the
value of getAnalyzer() . |
void | Initialize an IndexWriter. |
void | Updates a document by first deleting the document(s)
containing term and then adding the new
document. |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer | Returns the analyzer used by this index. |
Methods with parameter type org.apache.lucene.analysis.Analyzer | |
void | |
void |
Methods with return type org.apache.lucene.analysis.Analyzer | |
Analyzer | |
Analyzer |