public interface TabCompleteCommandEvent extends GameEvent, Cancellable, CauseTracked
Modifier and Type | Method and Description |
---|---|
String |
getArguments()
Get the arguments as a string.
|
String |
getCommand()
Get the command as a string, without any sort of command prefix.
|
List<String> |
getTabCompletions()
Get the list of available suggestions.
|
getCallbacks
isCancelled, setCancelled
getCause
String getCommand()
For example, if the message was /example bob 3 -f
, then
the command would be example
.
String getArguments()
For example, if the message was /example bob 3 -f
, then
the arguments would be bob 3 -f
.