Uses of Interface
picocli.CommandLine.IParseResultHandler2
-
Packages that use CommandLine.IParseResultHandler2 Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletion
functionality. -
-
Uses of CommandLine.IParseResultHandler2 in picocli
Classes in picocli that implement CommandLine.IParseResultHandler2 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 with parameters of type CommandLine.IParseResultHandler2 Modifier and Type Method Description <R> R
CommandLine. parseWithHandler(CommandLine.IParseResultHandler2<R> handler, String[] args)
Deprecated.useCommandLine.execute(String...)
andCommandLine.getExecutionResult()
instead<R> R
CommandLine. parseWithHandlers(CommandLine.IParseResultHandler2<R> handler, CommandLine.IExceptionHandler2<R> exceptionHandler, String... args)
Deprecated.useCommandLine.execute(String...)
andCommandLine.getExecutionResult()
instead
-