Package com.reportmill.text
Class RMSpellCheck.Word
- java.lang.Object
-
- com.reportmill.text.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.
-
-
-
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 classjava.lang.Object
-
-