Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.No

    Analyzer for Norwegian.

    Classes

    NorwegianAnalyzer

    Analyzer for Norwegian.

    NorwegianLightStemFilter

    A TokenFilter that applies NorwegianLightStemmer to stem Norwegian words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

    NorwegianLightStemFilterFactory

    Factory for NorwegianLightStemFilter.

    <fieldType name="text_svlgtstem" class="solr.TextField" positionIncrementGap="100">
      <analyzer>
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.NorwegianLightStemFilterFactory" variant="nb"/>
      </analyzer>
    </fieldType>

    NorwegianLightStemmer

    Light Stemmer for Norwegian.

    Parts of this stemmer is adapted from SwedishLightStemFilter, except that while the Swedish one has a pre-defined rule set and a corresponding corpus to validate against whereas the Norwegian one is hand crafted.

    NorwegianMinimalStemFilter

    A TokenFilter that applies NorwegianMinimalStemmer to stem Norwegian words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

    NorwegianMinimalStemFilterFactory

    Factory for NorwegianMinimalStemFilter.

    <fieldType name="text_svlgtstem" class="solr.TextField" positionIncrementGap="100">
      <analyzer>
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.NorwegianMinimalStemFilterFactory" variant="nb"/>
      </analyzer>
    </fieldType>

    NorwegianMinimalStemmer

    Minimal Stemmer for Norwegian Bokmål (no-nb) and Nynorsk (no-nn)

    Stems known plural forms for Norwegian nouns only, together with genitiv -s

    Enums

    NorwegianStandard

    • Improve this Doc
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)