Package | Description |
---|---|
org.apache.lucene.analysis |
API and code to convert text into indexable/searchable tokens.
|
org.apache.lucene.analysis.standard |
Standards-based analyzers implemented with JFlex.
|
Modifier and Type | Class | Description |
---|---|---|
class |
KeywordAnalyzer |
"Tokenizes" the entire stream as a single token.
|
class |
SimpleAnalyzer |
|
class |
StopAnalyzer |
|
class |
StopwordAnalyzerBase |
Base class for Analyzers that need to make use of stopword sets.
|
class |
WhitespaceAnalyzer |
An Analyzer that uses
WhitespaceTokenizer . |
Modifier and Type | Method | Description |
---|---|---|
protected static CharArraySet |
StopwordAnalyzerBase.loadStopwordSet(boolean ignoreCase,
Class<? extends ReusableAnalyzerBase> aClass,
String resource,
String comment) |
Creates a CharArraySet from a file resource associated with a class.
|
Modifier and Type | Class | Description |
---|---|---|
class |
ClassicAnalyzer |
Filters
ClassicTokenizer with ClassicFilter , LowerCaseFilter and StopFilter , using a list of
English stop words. |
class |
StandardAnalyzer |
Filters
StandardTokenizer with StandardFilter , LowerCaseFilter and StopFilter , using a list of
English stop words. |
class |
UAX29URLEmailAnalyzer |
Filters
UAX29URLEmailTokenizer
with StandardFilter ,
LowerCaseFilter and
StopFilter , using a list of
English stop words. |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.