Class NorwegianLightStemmer

java.lang.Object
org.apache.lucene.analysis.no.NorwegianLightStemmer

public class NorwegianLightStemmer extends Object
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.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Constant to remove Bokmål-specific endings
    static final int
    Constant to remove Nynorsk-specific endings
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new NorwegianLightStemmer
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    stem(char[] s, int len)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • BOKMAAL

      public static final int BOKMAAL
      Constant to remove Bokmål-specific endings
      See Also:
    • NYNORSK

      public static final int NYNORSK
      Constant to remove Nynorsk-specific endings
      See Also:
  • Constructor Details

    • NorwegianLightStemmer

      public NorwegianLightStemmer(int flags)
      Creates a new NorwegianLightStemmer
      Parameters:
      flags - set to BOKMAAL, NYNORSK, or both.
  • Method Details

    • stem

      public int stem(char[] s, int len)