Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.No

    Analyzer for Norwegian.

    Classes

    NorwegianAnalyzer

    Lucene.Net.Analysis.Analyzer for Norwegian.

    NorwegianLightStemFilter

    A Lucene.Net.Analysis.TokenFilter that applies NorwegianLightStemmer to stem Norwegian words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom Lucene.Net.Analysis.TokenFilter that sets the KeywordAttribute before this Lucene.Net.Analysis.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 Lucene.Net.Analysis.TokenFilter that applies NorwegianMinimalStemmer to stem Norwegian words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom Lucene.Net.Analysis.TokenFilter that sets the KeywordAttribute before this Lucene.Net.Analysis.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 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.