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 andautocompletionfunctionality. -
-
Uses of CommandLine.IExecutionStrategy in picocli
Classes in picocli that implement CommandLine.IExecutionStrategy Modifier and Type Class Description static classCommandLine.AbstractParseResultHandler<R>static classCommandLine.RunAllCommand line execution strategy that prints help if requested, and otherwise executes the top-level command and all subcommands asRunnable,CallableorMethod.static classCommandLine.RunFirstCommand line execution strategy that prints help if requested, and otherwise executes the top-levelRunnableorCallablecommand.static classCommandLine.RunLastCommand line execution strategy that prints help if requested, and otherwise executes the most specificRunnableorCallablesubcommand.Methods in picocli that return CommandLine.IExecutionStrategy Modifier and Type Method Description CommandLine.IExecutionStrategyCommandLine. getExecutionStrategy()Returns the execution strategy used by theexecutemethod 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 CommandLineCommandLine. setExecutionStrategy(CommandLine.IExecutionStrategy executionStrategy)Sets the execution strategy that theexecutemethod should use to invoke the business logic on the user objects of this command and/or the user-specified subcommand(s).
-