Class RSLPStemmerBase.Step

  • Enclosing class:
    RSLPStemmerBase

    protected static class RSLPStemmerBase.Step
    extends Object
    A step containing a list of rules.
    • Field Detail

      • name

        protected final String name
      • min

        protected final int min
      • suffixes

        protected final char[][] suffixes
    • Constructor Detail

      • Step

        public Step​(String name,
                    RSLPStemmerBase.Rule[] rules,
                    int min,
                    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.