Package | Description |
---|---|
org.springframework.shell |
Contains core classes for Spring Shell, irrespective of the way commands are actually implemented.
|
org.springframework.shell.jcommander |
Provides integration with JCommander.
|
org.springframework.shell.legacy |
Provides integration with Spring Shell 1.
|
org.springframework.shell.standard |
Contains infrastructure for describing commands with the "new" preferred Spring Shell programming model.
|
Modifier and Type | Method and Description |
---|---|
CompletionProposal |
CompletionProposal.category(String category) |
CompletionProposal |
CompletionProposal.description(String description) |
CompletionProposal |
CompletionProposal.displayText(String displayText) |
CompletionProposal |
CompletionProposal.dontQuote(boolean dontQuote) |
CompletionProposal |
CompletionProposal.value(String value) |
Modifier and Type | Method and Description |
---|---|
List<CompletionProposal> |
Shell.complete(CompletionContext context)
Gather completion proposals given some (incomplete) input the user has already typed
in.
|
List<CompletionProposal> |
ParameterResolver.complete(org.springframework.core.MethodParameter parameter,
CompletionContext context)
Invoked during TAB completion.
|
Modifier and Type | Method and Description |
---|---|
List<CompletionProposal> |
JCommanderParameterResolver.complete(org.springframework.core.MethodParameter parameter,
CompletionContext context) |
Modifier and Type | Method and Description |
---|---|
List<CompletionProposal> |
LegacyParameterResolver.complete(org.springframework.core.MethodParameter parameter,
CompletionContext context) |
Modifier and Type | Method and Description |
---|---|
List<CompletionProposal> |
StandardParameterResolver.complete(org.springframework.core.MethodParameter methodParameter,
CompletionContext context) |
List<CompletionProposal> |
ValueProvider.complete(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext,
String[] hints) |
List<CompletionProposal> |
FileValueProvider.complete(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext,
String[] hints) |
List<CompletionProposal> |
EnumValueProvider.complete(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext,
String[] hints) |
List<CompletionProposal> |
CommandValueProvider.complete(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext,
String[] hints) |
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.