Class RSLPStemmerBase.Rule

    • Field Detail

      • suffix

        protected final char[] suffix
      • replacement

        protected final char[] replacement
      • min

        protected final int min
    • Constructor Detail

      • Rule

        public Rule​(String suffix,
                    int min,
                    String replacement)
        Create a rule.
        Parameters:
        suffix - suffix to remove
        min - minimum stem length
        replacement - replacement string
    • Method Detail

      • matches

        public boolean matches​(char[] s,
                               int len)
        Returns:
        true if the word matches this rule.
      • replace

        public int replace​(char[] s,
                           int len)
        Returns:
        new valid length of the string after firing this rule.