| Package | Description |
|---|---|
| org.apache.logging.log4j.core.tools.picocli |
| Modifier and Type | Class and Description |
|---|---|
static class |
CommandLine.RunAll
Command line parse result handler that prints help if requested, and otherwise executes the top-level command and
all subcommands as
Runnable or Callable. |
static class |
CommandLine.RunFirst
Command line parse result handler that prints help if requested, and otherwise executes the top-level
Runnable or Callable command. |
static class |
CommandLine.RunLast
Command line parse result handler that prints help if requested, and otherwise executes the most specific
Runnable or Callable subcommand. |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.Object> |
CommandLine.parseWithHandler(CommandLine.IParseResultHandler handler,
java.io.PrintStream out,
java.lang.String... args)
Returns the result of calling
CommandLine.parseWithHandlers(IParseResultHandler, PrintStream, Help.Ansi, IExceptionHandler, String...)
with Help.Ansi.AUTO and a new CommandLine.DefaultExceptionHandler in addition to the specified parse result handler,
PrintStream, and the specified command line arguments. |
java.util.List<java.lang.Object> |
CommandLine.parseWithHandlers(CommandLine.IParseResultHandler handler,
java.io.PrintStream out,
CommandLine.Help.Ansi ansi,
CommandLine.IExceptionHandler exceptionHandler,
java.lang.String... args)
|