SpellCheckError

Inheritance: java.lang.Object

public class SpellCheckError

Representing misspelled word with additional data.

Constructors

ConstructorDescription
SpellCheckError()

Fields

FieldDescription
lengthMisspelled word’s length in the input text.
startPositionWord’s position in the input text.
suggestedWordslist of objects with suggested correct spellings
wordThe word being misspelled.

Methods

MethodDescription
equals(Object arg0)
getClass()
hashCode()
notify()
notifyAll()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

SpellCheckError()

public SpellCheckError()

length

public int length

Misspelled word’s length in the input text.

startPosition

public int startPosition

Word’s position in the input text.

suggestedWords

public List<SpellCheck.SuggestedWord> suggestedWords

list of objects with suggested correct spellings

word

public String word

The word being misspelled.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int