Class RMSpellCheck.Word

  • Enclosing class:
    RMSpellCheck

    public static class RMSpellCheck.Word
    extends java.lang.Object
    An innder class to represent a misspelled word.
    • Constructor Summary

      Constructors 
      Constructor Description
      Word()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getEnd()
      Returns the end index.
      int getStart()
      Returns the start index.
      java.lang.String getString()
      Returns the string.
      java.lang.StringBuffer getStringBuffer()
      Returns the string buffer.
      java.util.List getSuggestions()
      Returns a list of suggestions.
      java.lang.String toString()
      Returns string representation of word.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Word

        public Word()
    • Method Detail

      • getString

        public java.lang.String getString()
        Returns the string.
      • getStringBuffer

        public java.lang.StringBuffer getStringBuffer()
        Returns the string buffer.
      • getStart

        public int getStart()
        Returns the start index.
      • getEnd

        public int getEnd()
        Returns the end index.
      • getSuggestions

        public java.util.List getSuggestions()
        Returns a list of suggestions.
      • toString

        public java.lang.String toString()
        Returns string representation of word.
        Overrides:
        toString in class java.lang.Object