Uses of Interface
picocli.CommandLine.IExecutionStrategy
-
Packages that use CommandLine.IExecutionStrategy Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.IExecutionStrategy in picocli
Classes in picocli that implement CommandLine.IExecutionStrategy Modifier and Type Class Description static class
CommandLine.AbstractParseResultHandler<R>
static class
CommandLine.RunAll
Command line execution strategy that prints help if requested, and otherwise executes the top-level command and all subcommands asRunnable
,Callable
orMethod
.static class
CommandLine.RunFirst
Command line execution strategy that prints help if requested, and otherwise executes the top-levelRunnable
orCallable
command.static class
CommandLine.RunLast
Command line execution strategy that prints help if requested, and otherwise executes the most specificRunnable
orCallable
subcommand.Methods in picocli that return CommandLine.IExecutionStrategy Modifier and Type Method Description CommandLine.IExecutionStrategy
CommandLine. getExecutionStrategy()
Returns the execution strategy used by theexecute
method to invoke the business logic on the user objects of this command and/or the user-specified subcommand(s).Methods in picocli with parameters of type CommandLine.IExecutionStrategy Modifier and Type Method Description CommandLine
CommandLine. setExecutionStrategy(CommandLine.IExecutionStrategy executionStrategy)
Sets the execution strategy that theexecute
method should use to invoke the business logic on the user objects of this command and/or the user-specified subcommand(s).
-