Uses of Interface
picocli.CommandLine.IParseResultHandler2
-
Packages that use CommandLine.IParseResultHandler2 Package Description picocli -
-
Uses of CommandLine.IParseResultHandler2 in picocli
Classes in picocli that implement CommandLine.IParseResultHandler2 Modifier and Type Class Description static classCommandLine.AbstractParseResultHandler<R>Command line parse result handler that returns a value.static classCommandLine.RunAllCommand line parse result handler that prints help if requested, and otherwise executes the top-level command and all subcommands asRunnableorCallable.static classCommandLine.RunFirstCommand line parse result handler that prints help if requested, and otherwise executes the top-levelRunnableorCallablecommand.static classCommandLine.RunLastCommand line parse result handler that prints help if requested, and otherwise executes the most specificRunnableorCallablesubcommand.Methods in picocli with parameters of type CommandLine.IParseResultHandler2 Modifier and Type Method Description <R> RCommandLine. parseWithHandler(CommandLine.IParseResultHandler2<R> handler, String[] args)Returns the result of callingCommandLine.parseWithHandlers(IParseResultHandler2, IExceptionHandler2, String...)with a newCommandLine.DefaultExceptionHandlerin addition to the specified parse result handler and the specified command line arguments.<R> RCommandLine. parseWithHandlers(CommandLine.IParseResultHandler2<R> handler, CommandLine.IExceptionHandler2<R> exceptionHandler, String... args)
-