Class RSLPStemmerBase.Step

  • Enclosing class:
    RSLPStemmerBase

    protected static class RSLPStemmerBase.Step
    extends java.lang.Object
    A step containing a list of rules.
    • Constructor Summary

      Constructors 
      Constructor Description
      Step​(java.lang.String name, RSLPStemmerBase.Rule[] rules, int min, java.lang.String[] suffixes)
      Create a new step
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int apply​(char[] s, int len)  
      • Methods inherited from class java.lang.Object

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

      • name

        protected final java.lang.String name
      • min

        protected final int min
      • suffixes

        protected final char[][] suffixes
    • Constructor Detail

      • Step

        public Step​(java.lang.String name,
                    RSLPStemmerBase.Rule[] rules,
                    int min,
                    java.lang.String[] suffixes)
        Create a new step
        Parameters:
        name - Step's name.
        rules - an ordered list of rules.
        min - minimum word size. if this is 0 it is automatically calculated.
        suffixes - optional list of conditional suffixes. may be null.
    • Method Detail

      • apply

        public int apply​(char[] s,
                         int len)
        Returns:
        new valid length of the string after applying the entire step.