ProofreadingResult

  • ProofreadingResult is an abstract class that extends Object and provides results from proofreading inference.

  • The getResults() method returns a list of unique proofreading suggestions, which is guaranteed to be non-empty and sorted by confidence.

public abstract class ProofreadingResult extends Object

Results from the proofreading inference.

Public Method Summary

abstract ImmutableList<ProofreadingSuggestion>
getResults()
Gets a list of unique proofreading suggestions.

Inherited Method Summary

Public Methods

public abstract ImmutableList<ProofreadingSuggestion> getResults ()

Gets a list of unique proofreading suggestions.

The list is guaranteed to be non-empty and the suggested results are sorted in descending order of confidence.