Annotation Interface SASI.StandardAnalyzed
- Enclosing class:
- SASI
@Retention(RUNTIME)
@Target({FIELD,METHOD,ANNOTATION_TYPE})
public static @interface SASI.StandardAnalyzed
Apply standard analyzer to SASI indexing. This analyzer is used for analysis that involves stemming, case
normalization, case sensitivity, skipping common words like "and" and "the", and localization of the language used
to complete the analysis
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
Enable stemming of input text to reduce words to their base form, for example stemmer, stemming, stemmed are based on stem.Defines the locale for tokenization.Applies normalization to uppercase/lowercase.boolean
Skips stop words from indexing.Defines the locale for tokenization.
-
Element Details
-
value
Defines the locale for tokenization.- Default:
- "en"
-
locale
Defines the locale for tokenization.- Default:
- "en"
-
enableStemming
boolean enableStemmingEnable stemming of input text to reduce words to their base form, for example stemmer, stemming, stemmed are based on stem.- Default:
- false
-
skipStopWords
boolean skipStopWordsSkips stop words from indexing.- Default:
- false
-
normalization
SASI.Normalization normalizationApplies normalization to uppercase/lowercase.- Default:
- NONE
-