Class CapitalizationFilterFactory
Factory for CapitalizationFilter.
The factory takes parameters:
"onlyFirstWord" - should each word be capitalized or all of the words?
"keep" - a keep word list. Each word that should be kept separated by whitespace.
"keepIgnoreCase - true or false. If true, the keep list will be considered case-insensitive.
"forceFirstLetter" - Force the first letter to be capitalized even if it is in the keep list
"okPrefix" - do not change word capitalization if a word begins with something in this list. for example if "McK" is on the okPrefix list, the word "McKinley" should not be changed to "Mckinley"
"minWordLength" - how long the word needs to be to get capitalization applied. If the minWordLength is 3, "and" > "And" but "or" stays "or"
"maxWordCount" - if the token contains more then maxWordCount words, the capitalization is assumed to be correct.
<fieldType name="text_cptlztn" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.CapitalizationFilterFactory" onlyFirstWord="true"
keep="java solr lucene" keepIgnoreCase="false"
okPrefix="McK McD McA"/>
</analyzer>
</fieldType>
@since solr 1.3
Inherited Members
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
[Serializable]
public class CapitalizationFilterFactory : TokenFilterFactory
Constructors
Name | Description |
---|---|
CapitalizationFilterFactory(IDictionary<String, String>) | Creates a new CapitalizationFilterFactory |
Fields
Name | Description |
---|---|
CULTURE | |
FORCE_FIRST_LETTER | |
KEEP | |
KEEP_IGNORE_CASE | |
MAX_TOKEN_LENGTH | |
MAX_WORD_COUNT | |
MIN_WORD_LENGTH | |
OK_PREFIX | |
ONLY_FIRST_WORD |
Methods
Name | Description |
---|---|
Create(TokenStream) |