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 |
---|---|
CompletionContext |
CompletionContext.drop(int nbWords)
Return a copy of this context, as if the first nbWords were not present
|
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) |
boolean |
ValueProviderSupport.supports(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext) |
boolean |
ValueProvider.supports(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext) |
boolean |
FileValueProvider.supports(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext) |
boolean |
EnumValueProvider.supports(org.springframework.core.MethodParameter parameter,
CompletionContext completionContext) |
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.