public abstract class Suggestion
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static interface |
Suggestion.Builder |
Modifier and Type | Method and Description |
---|---|
static Suggestion.Builder |
builder() |
abstract int |
getReplacedArgument()
The argument index to replace in the original input.
|
abstract java.lang.String |
getSuggestion()
The suggestion value, to be inserted instead of the argument
at index
replacedArgument . |
abstract Suggestion.Builder |
toBuilder()
Convert this suggestion back to a builder.
|
public static Suggestion.Builder builder()
public abstract java.lang.String getSuggestion()
replacedArgument
.public abstract int getReplacedArgument()
public abstract Suggestion.Builder toBuilder()