CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerAsyncCompletion(String id,
CommandCompletions.AsyncCommandCompletionHandler<C> handler) |
Registr a completion handler to provide command completions based on the user input.
|
CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerCompletion(String id,
CommandCompletions.CommandCompletionHandler<C> handler) |
Registr a completion handler to provide command completions based on the user input.
|
CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerStaticCompletion(String id,
String list) |
Register a static list of command completions that will never change.
|
CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerStaticCompletion(String id,
String[] completions) |
Register a static list of command completions that will never change
|
CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerStaticCompletion(String id,
Collection<String> completions) |
Register a static list of command completions that will never change
|
CommandCompletions.CommandCompletionHandler |
CommandCompletions.registerStaticCompletion(String id,
Supplier<Collection<String>> supplier) |
Register a static list of command completions that will never change.
|