Class CommandLine
CommandLine interpreter that uses reflection to initialize an annotated user object with values obtained from the command line arguments.
Example
An example that implements Callable
and uses the CommandLine.execute
convenience API to run in a single line of code:
@Command(name = "checksum", mixinStandardHelpOptions = true, version = "checksum 4.0", description = "Prints the checksum (MD5 by default) of a file to STDOUT.") class CheckSum implements Callable<Integer> {@Parameters(index = "0", description = "The file whose checksum to calculate.") private File file; @Option(names = {"-a", "--algorithm"}, description = "MD5, SHA-1, SHA-256, ...") private String algorithm = "MD5"; // CheckSum implements Callable, so parsing, error handling and handling user // requests for usage help or version help can be done with one line of code. public static void main(String[] args) throws Exception { int exitCode = new CommandLine(new CheckSum()).execute(args); System.exit(exitCode); } @Override public Integer call() throws Exception { // your business logic goes here... byte[] fileContents = Files.readAllBytes(file.toPath()); byte[] digest = MessageDigest.getInstance(algorithm).digest(fileContents); System.out.printf("%0" + (digest.length*2) + "x%n", new BigInteger(1,digest)); return 0; }
}
Another example where the application calls parseArgs
and takes responsibility
for error handling and checking whether the user requested help:
import static picocli.CommandLine.*;@Command(mixinStandardHelpOptions = true, version = "v3.0.0", header = "Encrypt FILE(s), or standard input, to standard output or to the output file.") public class Encrypt {
@Parameters(description = "Any number of input files") private List<File> files = new ArrayList<File>(); @Option(names = { "-o", "--out" }, description = "Output file (default: print to console)") private File outputFile; @Option(names = { "-v", "--verbose"}, description = "Verbose mode. Helpful for troubleshooting. Multiple -v options increase the verbosity.") private boolean[] verbose;
}
Use CommandLine
to initialize a user object as follows:
public static void main(String... args) { Encrypt encrypt = new Encrypt(); try { ParseResult parseResult = new CommandLine(encrypt).parseArgs(args); if (!CommandLine.printHelpIfRequested(parseResult)) { runProgram(encrypt); } } catch (ParameterException ex) { // command line arguments could not be parsed System.err.println(ex.getMessage()); ex.getCommandLine().usage(System.err); } }
Invoke the above program with some command line arguments. The below are all equivalent:
--verbose --out=outfile in1 in2 --verbose --out outfile in1 in2 -v --out=outfile in1 in2 -v -o outfile in1 in2 -v -o=outfile in1 in2 -vo outfile in1 in2 -vo=outfile in1 in2 -v -ooutfile in1 in2 -vooutfile in1 in2
Classes and Interfaces for Defining a CommandSpec Model
Classes Related to Parsing Command Line Arguments
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
CommandLine.AbstractHandler<R,
T extends CommandLine.AbstractHandler<R, T>> Deprecated.static class
static @interface
ACommand
may define one or moreArgGroups
: a group of options, positional parameters or a mixture of the two.static @interface
static class
Deprecated.static class
Exception indicating that multiple named elements have incorrectly used the same name.static class
Exception indicating that multiple fields have been annotated with the same Option name.static class
Exception indicating a problem while invoking a command or subcommand.static final class
Defines some exit codes used by picocli as default return values from theexecute
andexecuteHelpRequest
methods.static class
A collection of methods and inner classes that provide fine-grained control over the contents and layout of the usage help message to display to end users when help is requested or invalid input values were specified.static final class
Help command that can be installed as a subcommand on all application commands.static interface
Provides default value for a command.static interface
static interface
static interface
Classes implementing this interface know how to handle Exceptions that occurred while executing theRunnable
,Callable
orMethod
user object of the command.static interface
Implementations are responsible for "executing" the user input and returning an exit code.static interface
Interface that provides the appropriate exit code that will be returned from theexecute
method for an exception that occurred during parsing or while invoking the command's Runnable, Callable, or Method.static interface
@Command
-annotated classes can implement this interface to specify an exit code that will be returned from theexecute
method when the command is successfully invoked.static interface
Factory for instantiating classes that are registered declaratively with annotation attributes, likeCommandLine.Command.subcommands()
,CommandLine.Option.converter()
,CommandLine.Parameters.converter()
andCommandLine.Command.versionProvider()
.static interface
Deprecated.useCommandLine.IHelpCommandInitializable2
insteadstatic interface
Help commands that provide usage help for other commands can implement this interface to be initialized with the information they need.static interface
Creates theCommandLine.Help
instance used to render the usage help message.static interface
Renders a section of the usage help message.static interface
Determines the option name transformation of negatable boolean options.static class
Exception indicating a problem duringCommandLine
initialization.static interface
Options or positional parameters can be assigned aIParameterConsumer
that implements custom logic to process the parameters for this option or this position.static interface
Classes implementing this interface know how to handleParameterExceptions
(usually from invalid user input).static interface
Deprecated.UseCommandLine.IExecutionStrategy
instead.static interface
Deprecated.useCommandLine.IExecutionStrategy
instead, seeexecute(String...)
static interface
static interface
Provides version information for a command.static class
Exception indicating that more values were specified for an option or parameter than itsarity
allows.static class
Exception indicating that a required parameter was not specified.static class
Exception indicating that an annotated field had a type for which noCommandLine.ITypeConverter
was registered.static @interface
static final class
This class provides a namespace for classes and interfaces that model concepts and attributes of command line interfaces in picocli.static class
Exception indicating that the user input included multiple arguments from a mutually exclusive group.static @interface
static class
Exception indicating that an option for a single-value option field has been specified multiple times on the command line.static class
Exception indicating something went wrong while parsing command line options.static class
Exception indicating that there was a gap in the indices of the fields annotated withCommandLine.Parameters
.static @interface
static @interface
static class
Encapsulates the result of parsing an array of command line arguments.static class
Base class of all exceptions thrown bypicocli.CommandLine
.static class
IDefaultValueProvider
implementation that loads default values for command line options and positional parameters from a properties file orProperties
object.static class
Describes the number of parameters required and accepted by an option or a positional parameter.static class
A regular expression-based option name transformation for negatable options.static class
Command line execution strategy that prints help if requested, and otherwise executes the top-level command and all subcommands asRunnable
,Callable
orMethod
.static class
Command line execution strategy that prints help if requested, and otherwise executes the top-levelRunnable
orCallable
command.static class
Command line execution strategy that prints help if requested, and otherwise executes the most specificRunnable
orCallable
subcommand.static @interface
Fields annotated with@Spec
will be initialized with theCommandSpec
for the command the field is part of.static class
Exception thrown byCommandLine.ITypeConverter
implementations to indicate a String could not be converted.static @interface
Fields annotated with@Unmatched
will be initialized with the list of unmatched command line arguments, if any.static class
Exception indicating that a command line argument could not be mapped to any of the fields annotated withCommandLine.Option
orCommandLine.Parameters
. -
Field Summary
-
Constructor Summary
ConstructorDescriptionCommandLine
(Object command) Constructs a newCommandLine
interpreter with the specified object (which may be an annotated user object or aCommandSpec
) and a default factory.CommandLine
(Object command, CommandLine.IFactory factory) Constructs a newCommandLine
interpreter with the specified object (which may be an annotated user object or aCommandSpec
) and object factory. -
Method Summary
Modifier and TypeMethodDescriptionAdds the options and positional parameters in the specified mixin to this command.addSubcommand
(Object command) Registers a subcommand with the name obtained from the@Command(name = "...")
annotation attribute of the specified command.addSubcommand
(String name, Object command) Registers a subcommand with the specified name.addSubcommand
(String name, Object command, String... aliases) Registers a subcommand with the specified name and all specified aliases.static <C extends Callable<T>,
T>
Tcall
(C callable, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(C callable, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(C callable, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
TDeprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <C extends Callable<T>,
T>
Tcall
(Class<C> callableClass, CommandLine.IFactory factory, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadvoid
Clears the execution result of a previous invocation from thisCommandLine
and all subcommands.Convenience method that returnsnew DefaultExceptionHandler<List<Object>>()
.static CommandLine.IFactory
Returns the defaultCommandLine.IFactory
implementation used if no factory was specified in theCommandLine constructor
.int
Convenience method to allow command line application authors to avoid some boilerplate code in their application.static Integer
executeHelpRequest
(CommandLine.ParseResult parseResult) Helper method that may be useful when processing theParseResult
that results from successfully parsing command line arguments.Returns the character that starts a single-line comment ornull
if all content of argument files should be interpreted as arguments (without comments).Returns the color scheme to use when printing help.<T> T
Returns the annotated user object that thisCommandLine
instance was constructed with.getCommandMethods
(Class<?> cls, String methodName) Helper to get methods of a class annotated with@Command
via reflection, optionally filtered by method name (not@Command.name
).Returns the command name (also called program name) displayed in the usage help synopsis.Returns theCommandSpec
model that thisCommandLine
was constructed with.Returns the default value provider for the command, ornull
if none has been set.Returns the end-of-options delimiter that signals that the remaining command line arguments should be treated as positional parameters.getErr()
Returns the writer to use when printing diagnostic (error) messages during command execution.Returns the handler for dealing with exceptions that occurred in theCallable
,Runnable
orMethod
user object of a command when the command was executed.<T> T
Returns the result of calling the user objectCallable
or invoking the user objectMethod
after parsing the user input, ornull
if this command has not been executed or if thisCommandLine
is for a subcommand that was not specified by the end user on the command line.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).Returns the mapper that was set by the application to map from exceptions to exit codes, for use by theexecute
method.getHelp()
Returns a newHelp
object created by theIHelpFactory
with theCommandSpec
andColorScheme
of this command.Returns theIHelpFactory
that is used to construct the usage help message.Returns the section keys in the order that the usage help message should render the sections.Returns the map of section keys and renderers used to construct the usage help message.Returns a map of user objects whose options and positional parameters were added to ("mixed in" with) this command.Returns theINegatableOptionTransformer
used to create the negative form of negatable options.getOut()
Returns the writer used when printing user-requested usage help or version help during command execution.Returns the handler for dealing with invalid user input when the command is executed.Returns the command that this is a subcommand of, ornull
if this is a top-level command.Returns the ResourceBundle of this command ornull
if no resource bundle is set.Returns the String that separates option names from option values when parsing command line options.Returns a map with the subcommands registered on this instance.Returns the list of unmatched command line arguments, if any.int
Returns the maximum width of the usage help message.Similar tousage(PrintStream)
, but returns the usage help message as a String instead of printing it to thePrintStream
.Similar tousage(PrintStream, Help.Ansi)
, but returns the usage help message as a String instead of printing it to thePrintStream
.getUsageMessage
(CommandLine.Help.ColorScheme colorScheme) Similar tousage(PrintStream, Help.ColorScheme)
, but returns the usage help message as a String instead of printing it to thePrintStream
.static Object
invoke
(String methodName, Class<?> cls, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic Object
invoke
(String methodName, Class<?> cls, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic Object
invoke
(String methodName, Class<?> cls, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic Object
Deprecated.useexecute(String...)
andgetExecutionResult()
insteadboolean
Returns whether line breaks should take wide Chinese, Japanese and Korean characters into account for line-breaking purposes.boolean
Returns whether the parser should ignore case when converting arguments toenum
values.boolean
Returns whether arguments starting with'@'
should be treated as the path to an argument file and its contents should be expanded into separate arguments for each line in the specified file.boolean
Returns whether whether variables should be interpolated in String values.boolean
Returns whether options for single-value fields can be specified multiple times on the command line.boolean
Returns whether the parser accepts clustered short options.boolean
Deprecated.Most applications should not change the default.boolean
Returns whether the parser interprets the first positional parameter as "end of options" so the remaining arguments are all treated as positional parameters.boolean
Returns whether the parser should stop interpreting options and positional parameters as soon as it encounters an unmatched option.boolean
Returns whether the value of boolean flag options should be "toggled" when the option is matched.boolean
Returns whether the parser should trim quotes from command line arguments.boolean
Returns whether the end user may specify arguments on the command line that are not matched to any option or parameter fields.boolean
Returns whether arguments on the command line that resemble an option should be treated as positional parameters.boolean
Returns whether picocli should attempt to detect the terminal size and adjust the usage help message width to take the full terminal width.boolean
Returnstrue
if an option annotated withCommandLine.Option.usageHelp()
was specified on the command line.boolean
Returns whether to use a simplified argument file format that is compatible with JCommander.boolean
Returnstrue
if an option annotated withCommandLine.Option.versionHelp()
was specified on the command line.Deprecated.useparseArgs(String...)
insteadParses the specified command line arguments and returns a list ofParseResult
with the options, positional parameters, and subcommands (if any) that were recognized and initialized during the parsing process.<R> R
parseWithHandler
(CommandLine.IParseResultHandler2<R> handler, String[] args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadparseWithHandler
(CommandLine.IParseResultHandler handler, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
instead<R> R
parseWithHandlers
(CommandLine.IParseResultHandler2<R> handler, CommandLine.IExceptionHandler2<R> exceptionHandler, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadparseWithHandlers
(CommandLine.IParseResultHandler handler, PrintStream out, CommandLine.Help.Ansi ansi, CommandLine.IExceptionHandler exceptionHandler, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadstatic <T> T
populateCommand
(T command, String... args) static <T> T
populateSpec
(Class<T> spec, String... args) static boolean
printHelpIfRequested
(List<CommandLine> parsedCommands, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi) Deprecated.useexecuteHelpRequest(ParseResult)
insteadstatic boolean
printHelpIfRequested
(List<CommandLine> parsedCommands, PrintStream out, PrintStream err, CommandLine.Help.ColorScheme colorScheme) Deprecated.useexecuteHelpRequest(ParseResult)
insteadstatic boolean
printHelpIfRequested
(List<CommandLine> parsedCommands, PrintStream out, CommandLine.Help.Ansi ansi) Deprecated.useprintHelpIfRequested(ParseResult)
insteadstatic boolean
printHelpIfRequested
(CommandLine.ParseResult parseResult) Delegates toexecuteHelpRequest(ParseResult)
.void
Delegates toprintVersionHelp(PrintStream, Help.Ansi)
with the ANSI setting of the configured color scheme.void
printVersionHelp
(PrintStream out, CommandLine.Help.Ansi ansi) Prints version information from theCommandLine.Command.version()
annotation to the specifiedPrintStream
.void
printVersionHelp
(PrintStream out, CommandLine.Help.Ansi ansi, Object... params) Prints version information from theCommandLine.Command.version()
annotation to the specifiedPrintStream
.void
Delegates toprintVersionHelp(PrintWriter, Help.Ansi, Object...)
with the ANSI setting of the configured color scheme.void
printVersionHelp
(PrintWriter out, CommandLine.Help.Ansi ansi, Object... params) Prints version information from theCommandLine.Command.version()
annotation to the specifiedPrintWriter
.<K> CommandLine
registerConverter
(Class<K> cls, CommandLine.ITypeConverter<K> converter) Registers the specified type converter for the specified class.static <R extends Runnable>
voidrun
(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(Class<R> runnableClass, CommandLine.IFactory factory, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(R runnable, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(R runnable, PrintStream out, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidrun
(R runnable, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadstatic <R extends Runnable>
voidDeprecated.useexecute(String...)
insteadsetAdjustLineBreaksForWideCJKCharacters
(boolean adjustForWideChars) Sets whether line breaks should take wide Chinese, Japanese and Korean characters into account, and returns this UsageMessageSpec.setAtFileCommentChar
(Character atFileCommentChar) Sets the character that starts a single-line comment ornull
if all content of argument files should be interpreted as arguments (without comments).setCaseInsensitiveEnumValuesAllowed
(boolean newValue) Sets whether the parser should ignore case when converting arguments toenum
values.setColorScheme
(CommandLine.Help.ColorScheme colorScheme) Sets the color scheme to use when printing help.setCommandName
(String commandName) Sets the command name (also called program name) displayed in the usage help synopsis to the specified value.Sets a default value provider for the command and sub-commandssetEndOfOptionsDelimiter
(String delimiter) Sets the end-of-options delimiter that signals that the remaining command line arguments should be treated as positional parameters.setErr
(PrintWriter err) Sets the writer to use when printing diagnostic (error) messages during command execution.setExecutionExceptionHandler
(CommandLine.IExecutionExceptionHandler executionExceptionHandler) Sets a custom handler for dealing with exceptions that occurred in theCallable
,Runnable
orMethod
user object of a command when the command was executed via the execute method.void
setExecutionResult
(Object result) Sets the result of calling the business logic on the command's user object.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).setExitCodeExceptionMapper
(CommandLine.IExitCodeExceptionMapper exitCodeExceptionMapper) Sets the mapper used by theexecute
method to map exceptions to exit codes.setExpandAtFiles
(boolean expandAtFiles) Sets whether arguments starting with'@'
should be treated as the path to an argument file and its contents should be expanded into separate arguments for each line in the specified file.setHelpFactory
(CommandLine.IHelpFactory helpFactory) Sets a newIHelpFactory
to customize the usage help message.setHelpSectionKeys
(List<String> keys) Sets the section keys in the order that the usage help message should render the sections.Sets the map of section keys and renderers used to construct the usage help message.setInterpolateVariables
(boolean interpolate) Sets whether whether variables should be interpolated in String values.Sets theINegatableOptionTransformer
used to create the negative form of negatable options.setOut
(PrintWriter out) Sets the writer to use when printing user-requested usage help or version help during command execution.setOverwrittenOptionsAllowed
(boolean newValue) Sets whether options for single-value fields can be specified multiple times on the command line without aCommandLine.OverwrittenOptionException
being thrown.setParameterExceptionHandler
(CommandLine.IParameterExceptionHandler parameterExceptionHandler) Sets the handler for dealing with invalid user input when the command is executed.setPosixClusteredShortOptionsAllowed
(boolean newValue) Sets whether short options like-x -v -f SomeFile
can be clustered together like-xvfSomeFile
.setResourceBundle
(ResourceBundle bundle) Sets the ResourceBundle containing usage help message strings.setSeparator
(String separator) Sets the String the parser uses to separate option names from option values to the specified value.setSplitQuotedStrings
(boolean newValue) Deprecated.Most applications should not change the default.setStopAtPositional
(boolean newValue) Sets whether the parser interprets the first positional parameter as "end of options" so the remaining arguments are all treated as positional parameters.setStopAtUnmatched
(boolean newValue) Sets whether the parser should stop interpreting options and positional parameters as soon as it encounters an unmatched option.setToggleBooleanFlags
(boolean newValue) Sets whether the value of boolean flag options should be "toggled" when the option is matched.setTrimQuotes
(boolean newValue) Sets whether the parser should trim quotes from command line arguments before processing them.setUnmatchedArgumentsAllowed
(boolean newValue) Sets whether the end user may specify unmatched arguments on the command line without aCommandLine.UnmatchedArgumentException
being thrown.setUnmatchedOptionsArePositionalParams
(boolean newValue) Sets whether arguments on the command line that resemble an option should be treated as positional parameters.setUsageHelpAutoWidth
(boolean detectTerminalSize) Sets whether picocli should attempt to detect the terminal size and adjust the usage help message width to take the full terminal width.setUsageHelpWidth
(int width) Sets the maximum width of the usage help message.setUseSimplifiedAtFiles
(boolean simplifiedAtFiles) Sets whether to use a simplified argument file format that is compatible with JCommander.void
usage
(PrintStream out) Delegates tousage(PrintStream, Help.ColorScheme)
with the configured color scheme.void
usage
(PrintStream out, CommandLine.Help.Ansi ansi) Delegates tousage(PrintStream, Help.ColorScheme)
with the default color scheme.void
usage
(PrintStream out, CommandLine.Help.ColorScheme colorScheme) Prints a usage help message for the annotated command class to the specifiedPrintStream
.void
usage
(PrintWriter writer) Delegates tousage(PrintWriter, Help.ColorScheme)
with the configured color scheme.void
usage
(PrintWriter writer, CommandLine.Help.Ansi ansi) Similar tousage(PrintStream, Help.Ansi)
but with the specifiedPrintWriter
instead of aPrintStream
.void
usage
(PrintWriter writer, CommandLine.Help.ColorScheme colorScheme) Similar tousage(PrintStream, Help.ColorScheme)
, but with the specifiedPrintWriter
instead of aPrintStream
.static void
usage
(Object command, PrintStream out) Equivalent tonew CommandLine(command).usage(out)
.static void
usage
(Object command, PrintStream out, CommandLine.Help.Ansi ansi) Equivalent tonew CommandLine(command).usage(out, ansi)
.static void
usage
(Object command, PrintStream out, CommandLine.Help.ColorScheme colorScheme) Equivalent tonew CommandLine(command).usage(out, colorScheme)
.
-
Field Details
-
VERSION
This is picocli version "4.1.2".- See Also:
-
-
Constructor Details
-
CommandLine
Constructs a new
CommandLine
interpreter with the specified object (which may be an annotated user object or aCommandSpec
) and a default factory.The specified object may be a
CommandSpec
object, or it may be a@Command
-annotated user object with@Option
and@Parameters
-annotated fields, in which case picocli automatically constructs aCommandSpec
from this user object.If the specified command object is an interface
Class
with@Option
and@Parameters
-annotated methods, picocli creates aProxy
whose methods return the matched command line values. If the specified command object is a concreteClass
, picocli delegates to the default factory to get an instance.If the specified object implements
Runnable
orCallable
, or if it is aMethod
object, the command can be run as an application in a single line of code by using theexecute
method to omit some boilerplate code for handling help requests and invalid input. SeegetCommandMethods
for a convenient way to obtain a commandMethod
.When the
parseArgs(String...)
method is called, theCommandSpec
object will be initialized based on command line arguments. If the commandSpec is created from an annotated user object, this user object will be initialized based on the command line arguments.- Parameters:
command
- an annotated user object or aCommandSpec
object to initialize from the command line arguments- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotation
-
CommandLine
Constructs a new
CommandLine
interpreter with the specified object (which may be an annotated user object or aCommandSpec
) and object factory.The specified object may be a
CommandSpec
object, or it may be a@Command
-annotated user object with@Option
and@Parameters
-annotated fields, in which case picocli automatically constructs aCommandSpec
from this user object.If the specified command object is an interface
Class
with@Option
and@Parameters
-annotated methods, picocli creates aProxy
whose methods return the matched command line values. If the specified command object is a concreteClass
, picocli delegates to the factory to get an instance.If the specified object implements
Runnable
orCallable
, or if it is aMethod
object, the command can be run as an application in a single line of code by using theexecute
method to omit some boilerplate code for handling help requests and invalid input. SeegetCommandMethods
for a convenient way to obtain a commandMethod
.When the
parseArgs(String...)
method is called, theCommandSpec
object will be initialized based on command line arguments. If the commandSpec is created from an annotated user object, this user object will be initialized based on the command line arguments.- Parameters:
command
- an annotated user object or aCommandSpec
object to initialize from the command line argumentsfactory
- the factory used to create instances of subcommands, converters, etc., that are registered declaratively with annotation attributes- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotation
-
-
Method Details
-
getCommandSpec
Returns the
CommandSpec
model that thisCommandLine
was constructed with.- Returns:
- the
CommandSpec
model
-
addMixin
Adds the options and positional parameters in the specified mixin to this command.
The specified object may be a
CommandSpec
object, or it may be a user object with@Option
and@Parameters
-annotated fields, in which case picocli automatically constructs aCommandSpec
from this user object.- Parameters:
name
- the name by which the mixin object may later be retrievedmixin
- an annotated user object or aCommandSpec
object whose options and positional parameters to add to this command- Returns:
- this CommandLine object, to allow method chaining
-
getMixins
Returns a map of user objects whose options and positional parameters were added to ("mixed in" with) this command.
- Returns:
- a new Map containing the user objects mixed in with this command. If
CommandSpec
objects without user objects were programmatically added, use theunderlying model
directly.
-
addSubcommand
Registers a subcommand with the name obtained from the@Command(name = "...")
annotation attribute of the specified command.- Parameters:
command
- the object to initialize with command line arguments following the subcommand name. This may be aClass
that has a@Command
annotation, or an instance of such a class, or aCommandSpec
orCommandLine
instance with its own (nested) subcommands.- Returns:
- this CommandLine object, to allow method chaining
- Throws:
CommandLine.InitializationException
- if no name could be found for the specified subcommand, or if another subcommand was already registered under the same name, or if one of the aliases of the specified subcommand was already used by another subcommand.- Since:
- 4.0
- See Also:
-
addSubcommand
Registers a subcommand with the specified name. For example:CommandLine commandLine = new CommandLine(new Git()) .addSubcommand("status", new GitStatus()) .addSubcommand("commit", new GitCommit(); .addSubcommand("add", new GitAdd()) .addSubcommand("branch", new GitBranch()) .addSubcommand("checkout", new GitCheckout()) //... ;
The specified object can be an annotated object or a
CommandLine
instance with its own nested subcommands. For example:CommandLine commandLine = new CommandLine(new MainCommand()) .addSubcommand("cmd1", new ChildCommand1()) // subcommand .addSubcommand("cmd2", new ChildCommand2()) .addSubcommand("cmd3", new CommandLine(new ChildCommand3()) // subcommand with nested sub-subcommands .addSubcommand("cmd3sub1", new GrandChild3Command1()) .addSubcommand("cmd3sub2", new GrandChild3Command2()) .addSubcommand("cmd3sub3", new CommandLine(new GrandChild3Command3()) // deeper nesting .addSubcommand("cmd3sub3sub1", new GreatGrandChild3Command3_1()) .addSubcommand("cmd3sub3sub2", new GreatGrandChild3Command3_2()) ) );
The default type converters are available on all subcommands and nested sub-subcommands, but custom type converters are registered only with the subcommand hierarchy as it existed when the custom type was registered. To ensure a custom type converter is available to all subcommands, register the type converter last, after adding subcommands.
See also the
CommandLine.Command.subcommands()
annotation to register subcommands declaratively.- Parameters:
name
- the string to recognize on the command line as a subcommand. Ifnull
, the name of the specified subcommand is used; if this is alsonull
, the first alias is used.command
- the object to initialize with command line arguments following the subcommand name. This may be aClass
that has a@Command
annotation, or an instance of such a class, or aCommandSpec
orCommandLine
instance with its own (nested) subcommands.- Returns:
- this CommandLine object, to allow method chaining
- Throws:
CommandLine.InitializationException
- if the specified name isnull
, and no alternative name could be found, or if another subcommand was already registered under the same name, or if one of the aliases of the specified subcommand was already used by another subcommand.- Since:
- 0.9.7
- See Also:
-
addSubcommand
Registers a subcommand with the specified name and all specified aliases. See alsoaddSubcommand(String, Object)
.- Parameters:
name
- the string to recognize on the command line as a subcommand. Ifnull
, the name of the specified subcommand is used; if this is alsonull
, the first alias is used.command
- the object to initialize with command line arguments following the subcommand name. This may be aClass
that has a@Command
annotation, or an instance of such a class, or aCommandSpec
orCommandLine
instance with its own (nested) subcommands.aliases
- zero or more alias names that are also recognized on the command line as this subcommand- Returns:
- this CommandLine object, to allow method chaining
- Throws:
CommandLine.InitializationException
- if the specified name isnull
, and no alternative name could be found, or if another subcommand was already registered under the same name, or if one of the aliases of the specified subcommand was already used by another subcommand.- Since:
- 3.1
- See Also:
-
getSubcommands
Returns a map with the subcommands registered on this instance.- Returns:
- a map with the registered subcommands
- Since:
- 0.9.7
-
getParent
Returns the command that this is a subcommand of, or
null
if this is a top-level command.- Returns:
- the command that this is a subcommand of, or
null
if this is a top-level command - Since:
- 0.9.8
- See Also:
-
getCommand
public <T> T getCommand()Returns the annotated user object that thisCommandLine
instance was constructed with.- Type Parameters:
T
- the type of the variable that the return value is being assigned to- Returns:
- the annotated object that this
CommandLine
instance was constructed with - Since:
- 0.9.7
-
isUsageHelpRequested
public boolean isUsageHelpRequested()Returnstrue
if an option annotated withCommandLine.Option.usageHelp()
was specified on the command line.- Returns:
- whether the parser encountered an option annotated with
CommandLine.Option.usageHelp()
. - Since:
- 0.9.8
-
isVersionHelpRequested
public boolean isVersionHelpRequested()Returnstrue
if an option annotated withCommandLine.Option.versionHelp()
was specified on the command line.- Returns:
- whether the parser encountered an option annotated with
CommandLine.Option.versionHelp()
. - Since:
- 0.9.8
-
getHelp
Returns a newHelp
object created by theIHelpFactory
with theCommandSpec
andColorScheme
of this command.- Since:
- 4.1
- See Also:
-
getHelpFactory
Returns theIHelpFactory
that is used to construct the usage help message.- Since:
- 3.9
- See Also:
-
setHelpFactory
Sets a newIHelpFactory
to customize the usage help message.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
helpFactory
- the new help factory. Must be non-null
.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.9
-
getHelpSectionKeys
Returns the section keys in the order that the usage help message should render the sections. This ordering may be modified with
setSectionKeys
. The default keys are (in order):- {@link UsageMessageSpec#SECTION<em>KEY</em>HEADER<em>HEADING SECTIONKEYHEADERHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>HEADER SECTIONKEYHEADER}
- {@link UsageMessageSpec#SECTION<em>KEY</em>SYNOPSIS<em>HEADING SECTIONKEYSYNOPSISHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>SYNOPSIS SECTIONKEYSYNOPSIS}
- {@link UsageMessageSpec#SECTION<em>KEY</em>DESCRIPTION<em>HEADING SECTIONKEYDESCRIPTIONHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>DESCRIPTION SECTIONKEYDESCRIPTION}
- {@link UsageMessageSpec#SECTION<em>KEY</em>PARAMETER<em>LIST</em>HEADING SECTIONKEYPARAMETERLISTHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>PARAMETER<em>LIST SECTIONKEYPARAMETERLIST}
- {@link UsageMessageSpec#SECTION<em>KEY</em>OPTION<em>LIST</em>HEADING SECTIONKEYOPTIONLISTHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>OPTION<em>LIST SECTIONKEYOPTIONLIST}
- {@link UsageMessageSpec#SECTION<em>KEY</em>COMMAND<em>LIST</em>HEADING SECTIONKEYCOMMANDLISTHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>COMMAND<em>LIST SECTIONKEYCOMMANDLIST}
- {@link UsageMessageSpec#SECTION<em>KEY</em>EXIT<em>CODE</em>LIST<em>HEADING SECTIONKEYEXITCODELISTHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>EXIT<em>CODE</em>LIST SECTIONKEYEXITCODELIST}
- {@link UsageMessageSpec#SECTION<em>KEY</em>FOOTER<em>HEADING SECTIONKEYFOOTERHEADING}
- {@link UsageMessageSpec#SECTION<em>KEY</em>FOOTER SECTIONKEYFOOTER}
- Since:
- 3.9
-
setHelpSectionKeys
Sets the section keys in the order that the usage help message should render the sections.
The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.Use
CommandLine.Model.UsageMessageSpec.sectionKeys(List)
to customize a command without affecting its subcommands.- Since:
- 3.9
- See Also:
-
getHelpSectionMap
Returns the map of section keys and renderers used to construct the usage help message. The usage help message can be customized by adding, replacing and removing section renderers from this map. Sections can be reordered with
setSectionKeys
. Sections that are either not in this map or not in the list returned bygetSectionKeys
are omitted.NOTE: By modifying the returned
Map
, only the usage help message of this command is affected. UsesetHelpSectionMap(Map)
to customize the usage help message for this command and all subcommands.- Since:
- 3.9
-
setHelpSectionMap
Sets the map of section keys and renderers used to construct the usage help message.
The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.Use
CommandLine.Model.UsageMessageSpec.sectionMap(Map)
to customize a command without affecting its subcommands.- Since:
- 3.9
- See Also:
-
isAdjustLineBreaksForWideCJKCharacters
public boolean isAdjustLineBreaksForWideCJKCharacters()Returns whether line breaks should take wide Chinese, Japanese and Korean characters into account for line-breaking purposes. The default is
true
.- Returns:
- true if wide Chinese, Japanese and Korean characters are counted as double the size of other characters for line-breaking purposes
-
setAdjustLineBreaksForWideCJKCharacters
Sets whether line breaks should take wide Chinese, Japanese and Korean characters into account, and returns this UsageMessageSpec. The default istrue
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
adjustForWideChars
- if true, wide Chinese, Japanese and Korean characters are counted as double the size of other characters for line-breaking purposes- Since:
- 4.0
-
isToggleBooleanFlags
public boolean isToggleBooleanFlags()Returns whether the value of boolean flag options should be "toggled" when the option is matched. From 4.0, this isfalse
by default, and when a flag option is specified on the command line picocli will set its value to the opposite of its default value. If this method returnstrue
, flags are toggled, so if the value istrue
it is set tofalse
, and when the value isfalse
it is set totrue
. When toggling is enabled, specifying a flag option twice on the command line will have no effect because they cancel each other out.- Returns:
true
the value of boolean flag options should be "toggled" when the option is matched,false
otherwise- Since:
- 3.0
-
setToggleBooleanFlags
Sets whether the value of boolean flag options should be "toggled" when the option is matched. The default isfalse
, and when a flag option is specified on the command line picocli will set its value to the opposite of its default value.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.0
-
isInterpolateVariables
public boolean isInterpolateVariables()Returns whether whether variables should be interpolated in String values. The default istrue
.- Since:
- 4.0
-
setInterpolateVariables
Sets whether whether variables should be interpolated in String values. The default istrue
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Since:
- 4.0
-
isOverwrittenOptionsAllowed
public boolean isOverwrittenOptionsAllowed()Returns whether options for single-value fields can be specified multiple times on the command line. The default isfalse
and aCommandLine.OverwrittenOptionException
is thrown if this happens. Whentrue
, the last specified value is retained.- Returns:
true
if options for single-value fields can be specified multiple times on the command line,false
otherwise- Since:
- 0.9.7
-
setOverwrittenOptionsAllowed
Sets whether options for single-value fields can be specified multiple times on the command line without aCommandLine.OverwrittenOptionException
being thrown. The default isfalse
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 0.9.7
-
isPosixClusteredShortOptionsAllowed
public boolean isPosixClusteredShortOptionsAllowed()Returns whether the parser accepts clustered short options. The default istrue
.- Returns:
true
if short options like-x -v -f SomeFile
can be clustered together like-xvfSomeFile
,false
otherwise- Since:
- 3.0
-
setPosixClusteredShortOptionsAllowed
Sets whether short options like-x -v -f SomeFile
can be clustered together like-xvfSomeFile
. The default istrue
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.0
-
isCaseInsensitiveEnumValuesAllowed
public boolean isCaseInsensitiveEnumValuesAllowed()Returns whether the parser should ignore case when converting arguments toenum
values. The default isfalse
.- Returns:
true
if enum values can be specified that don't match thetoString()
value of the enum constant,false
otherwise; e.g., for an option of type java.time.DayOfWeek, valuesMonDaY
,monday
andMONDAY
are all recognized iftrue
.- Since:
- 3.4
-
setCaseInsensitiveEnumValuesAllowed
Sets whether the parser should ignore case when converting arguments toenum
values. The default isfalse
. When set to true, for example, for an option of type java.time.DayOfWeek, valuesMonDaY
,monday
andMONDAY
are all recognized iftrue
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.4
-
isTrimQuotes
public boolean isTrimQuotes()Returns whether the parser should trim quotes from command line arguments. The default is read from the system property "picocli.trimQuotes" and will betrue
if the property is present and empty, or if its value is "true".If this property is set to
true
, the parser will remove quotes from the command line arguments, as follows:- if the command line argument contains just the leading and trailing quote, these quotes are removed
- if the command line argument contains more quotes than just the leading and trailing quote, the parser first
tries to process the parameter with the quotes intact. For example, the
split
regular expression inside a quoted region should be ignored, so arguments like"a,b","x,y"
are handled correctly. For arguments with nested quotes, quotes are removed later in the processing pipeline, aftersplit
operations are applied.
- Returns:
true
if the parser should trim quotes from command line arguments before processing them,false
otherwise;- Since:
- 3.7
- See Also:
-
setTrimQuotes
Sets whether the parser should trim quotes from command line arguments before processing them. The default is read from the system property "picocli.trimQuotes" and will betrue
if the property is set and empty, or if its value is "true".If this property is set to
true
, the parser will remove quotes from the command line arguments, as follows:- if the command line argument contains just the leading and trailing quote, these quotes are removed
- if the command line argument contains more quotes than just the leading and trailing quote, the parser first
tries to process the parameter with the quotes intact. For example, the
split
regular expression inside a quoted region should be ignored, so arguments like"a,b","x,y"
are handled correctly. For arguments with nested quotes, quotes are removed later in the processing pipeline, aftersplit
operations are applied.
The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.Calling this method will cause the "picocli.trimQuotes" property to have no effect.
- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.7
- See Also:
-
isSplitQuotedStrings
Deprecated.Most applications should not change the default. The rare application that does need to split parameter values without respecting quotes should useCommandLine.Model.ParserSpec.splitQuotedStrings(boolean)
.Returns whether the parser is allowed to split quoted Strings or not. The default isfalse
, so quotes are respected: quoted strings are treated as a single value that should not be broken up.For example, take a single command line parameter
"a,b","x,y"
. With a comma split regex, the default ofsplitQuotedStrings = false
means that this value will be split into two strings:"a,b"
and"x,y"
. This is usually what you want.If
splitQuotedStrings
is set totrue
, quotes are not respected, and the value is split up into four parts: the first is"a
, the second isb"
, the third is"x
, and the last part isy"
. This is generally not what you want.- Returns:
true
if the parser is allowed to split quoted Strings,false
otherwise;- Since:
- 3.7
- See Also:
-
setSplitQuotedStrings
Deprecated.Most applications should not change the default. The rare application that does need to split parameter values without respecting quotes should useCommandLine.Model.ParserSpec.splitQuotedStrings(boolean)
.Sets whether the parser is allowed to split quoted Strings. The default isfalse
, so quotes are respected: quoted strings are treated as a single value that should not be broken up.For example, take a single command line parameter
"a,b","x,y"
. With a comma split regex, the default ofsplitQuotedStrings = false
means that this value will be split into two strings:"a,b"
and"x,y"
. This is usually what you want.However, if
splitQuotedStrings
is set totrue
, quotes are not respected, and the value is split up into four parts: the first is"a
, the second isb"
, the third is"x
, and the last part isy"
. This is generally not what you want.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.7
- See Also:
-
getEndOfOptionsDelimiter
Returns the end-of-options delimiter that signals that the remaining command line arguments should be treated as positional parameters.- Returns:
- the end-of-options delimiter. The default is
"--"
. - Since:
- 3.5
-
setEndOfOptionsDelimiter
Sets the end-of-options delimiter that signals that the remaining command line arguments should be treated as positional parameters.- Parameters:
delimiter
- the end-of-options delimiter; must not benull
. The default is"--"
.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.5
-
getDefaultValueProvider
Returns the default value provider for the command, ornull
if none has been set.- Returns:
- the default value provider for this command, or
null
- Since:
- 3.6
- See Also:
-
setDefaultValueProvider
Sets a default value provider for the command and sub-commandsThe specified setting will be registered with this
CommandLine
and the full hierarchy of its sub-commands and nested sub-subcommands at the moment this method is called. Sub-commands added later will have the default setting. To ensure a setting is applied to all sub-commands, call the setter last, after adding sub-commands.- Parameters:
newValue
- the default value provider to use- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.6
-
isStopAtPositional
public boolean isStopAtPositional()Returns whether the parser interprets the first positional parameter as "end of options" so the remaining arguments are all treated as positional parameters. The default isfalse
.- Returns:
true
if all values following the first positional parameter should be treated as positional parameters,false
otherwise- Since:
- 2.3
-
setStopAtPositional
Sets whether the parser interprets the first positional parameter as "end of options" so the remaining arguments are all treated as positional parameters. The default isfalse
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
-true
if all values following the first positional parameter should be treated as positional parameters,false
otherwise- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 2.3
-
isStopAtUnmatched
public boolean isStopAtUnmatched()Returns whether the parser should stop interpreting options and positional parameters as soon as it encounters an unmatched option. Unmatched options are arguments that look like an option but are not one of the known options, or positional arguments for which there is no available slots (the command has no positional parameters or their size is limited). The default isfalse
.Setting this flag to
true
automatically sets the unmatchedArgumentsAllowed flag totrue
also.- Returns:
true
when an unmatched option should result in the remaining command line arguments to be added to the unmatchedArguments list- Since:
- 2.3
-
setStopAtUnmatched
Sets whether the parser should stop interpreting options and positional parameters as soon as it encounters an unmatched option. Unmatched options are arguments that look like an option but are not one of the known options, or positional arguments for which there is no available slots (the command has no positional parameters or their size is limited). The default isfalse
.Setting this flag to
true
automatically sets the unmatchedArgumentsAllowed flag totrue
also.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
-true
when an unmatched option should result in the remaining command line arguments to be added to the unmatchedArguments list- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 2.3
-
isUnmatchedOptionsArePositionalParams
public boolean isUnmatchedOptionsArePositionalParams()Returns whether arguments on the command line that resemble an option should be treated as positional parameters. The default isfalse
and the parser behaviour depends onisUnmatchedArgumentsAllowed()
.- Returns:
true
arguments on the command line that resemble an option should be treated as positional parameters,false
otherwise- Since:
- 3.0
- See Also:
-
setUnmatchedOptionsArePositionalParams
Sets whether arguments on the command line that resemble an option should be treated as positional parameters. The default isfalse
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting. Whentrue
, arguments on the command line that resemble an option should be treated as positional parameters.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.0
- See Also:
-
isUnmatchedArgumentsAllowed
public boolean isUnmatchedArgumentsAllowed()Returns whether the end user may specify arguments on the command line that are not matched to any option or parameter fields. The default isfalse
and aCommandLine.UnmatchedArgumentException
is thrown if this happens. Whentrue
, the last unmatched arguments are available via thegetUnmatchedArguments()
method.- Returns:
true
if the end use may specify unmatched arguments on the command line,false
otherwise- Since:
- 0.9.7
- See Also:
-
setUnmatchedArgumentsAllowed
Sets whether the end user may specify unmatched arguments on the command line without aCommandLine.UnmatchedArgumentException
being thrown. The default isfalse
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
newValue
- the new setting. Whentrue
, the last unmatched arguments are available via thegetUnmatchedArguments()
method.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 0.9.7
- See Also:
-
getUnmatchedArguments
Returns the list of unmatched command line arguments, if any.- Returns:
- the list of unmatched command line arguments or an empty list
- Since:
- 0.9.7
- See Also:
-
getColorScheme
Returns the color scheme to use when printing help. The default value is the default color scheme withAnsi.AUTO
. -
setColorScheme
Sets the color scheme to use when printing help.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
colorScheme
- the new color scheme- Since:
- 4.0
- See Also:
-
getOut
Returns the writer used when printing user-requested usage help or version help during command execution. Defaults to a PrintWriter wrapper aroundSystem.out
unlesssetOut(PrintWriter)
was called with a different writer.This method is used by
execute(String...)
. CustomIExecutionStrategy
implementations should also use this writer.By convention, when the user requests help with a
--help
or similar option, the usage help message is printed to the standard output stream so that it can be easily searched and paged.- Since:
- 4.0
-
setOut
Sets the writer to use when printing user-requested usage help or version help during command execution.This method is used by
execute(String...)
. CustomIExecutionStrategy
implementations should also use this writer.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
out
- the new PrintWriter to use- Returns:
- this CommandLine for method chaining
- Since:
- 4.0
-
getErr
Returns the writer to use when printing diagnostic (error) messages during command execution. Defaults to a PrintWriter wrapper aroundSystem.err
, unlesssetErr(PrintWriter)
was called with a different writer.This method is used by
execute(String...)
.IParameterExceptionHandler
andIExecutionExceptionHandler
implementations should use this writer to print error messages (which may include a usage help message) when an unexpected error occurs.- Since:
- 4.0
-
setErr
Sets the writer to use when printing diagnostic (error) messages during command execution.This method is used by
execute(String...)
.IParameterExceptionHandler
andIExecutionExceptionHandler
implementations should use this writer to print error messages (which may include a usage help message) when an unexpected error occurs.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
err
- the new PrintWriter to use- Returns:
- this CommandLine for method chaining
- Since:
- 4.0
-
getExitCodeExceptionMapper
Returns the mapper that was set by the application to map from exceptions to exit codes, for use by the
execute
method.- Returns:
- the mapper that was set, or
null
if none was set
-
setExitCodeExceptionMapper
public CommandLine setExitCodeExceptionMapper(CommandLine.IExitCodeExceptionMapper exitCodeExceptionMapper) Sets the mapper used by theexecute
method to map exceptions to exit codes.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
exitCodeExceptionMapper
- the new value- Returns:
- this CommandLine for method chaining
- Since:
- 4.0
-
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). The default value isRunLast
.- Returns:
- the execution strategy to run the user-specified command
- Since:
- 4.0
-
setExecutionStrategy
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).The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
executionStrategy
- the new execution strategy to run the user-specified command- Returns:
- this CommandLine for method chaining
- Since:
- 4.0
-
getParameterExceptionHandler
Returns the handler for dealing with invalid user input when the command is executed.
The default implementation prints an error message describing the problem, followed by either suggested alternatives for mistyped options, or the full usage help message of the problematic command; it then delegates to the exit code exception mapper for an exit code, with
exitCodeOnInvalidInput
as the default exit code.Alternatively, you can install a "short error message handler" like this:
static class ShortErrorMessageHandler implements IParameterExceptionHandler { public int handleParseException(ParameterException ex, String[] args) { CommandLine cmd = ex.getCommandLine(); PrintWriter writer = cmd.getErr();
writer.println(ex.getMessage()); UnmatchedArgumentException.printSuggestions(ex, writer); writer.print(cmd.getHelp().fullSynopsis()); CommandSpec spec = cmd.getCommandSpec(); writer.printf("Try '%s --help' for more information.%n", spec.qualifiedName()); return cmd.getExitCodeExceptionMapper() != null ? cmd.getExitCodeExceptionMapper().getExitCode(ex) : spec.exitCodeOnInvalidInput(); }
}
Install this error handler like this:
new CommandLine(new MyApp()) .setParameterExceptionHandler(new ShortErrorMessageHandler()) .execute(args);
- Returns:
- the handler for dealing with invalid user input
-
setParameterExceptionHandler
public CommandLine setParameterExceptionHandler(CommandLine.IParameterExceptionHandler parameterExceptionHandler) Sets the handler for dealing with invalid user input when the command is executed.
The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
parameterExceptionHandler
- the new handler for dealing with invalid user input- Returns:
- this CommandLine for method chaining
- See Also:
-
getExecutionExceptionHandler
Returns the handler for dealing with exceptions that occurred in theCallable
,Runnable
orMethod
user object of a command when the command was executed.The default implementation rethrows the specified exception.
- Returns:
- the handler for dealing with exceptions that occurred in the business logic when the
execute
method was invoked. - Since:
- 4.0
-
setExecutionExceptionHandler
public CommandLine setExecutionExceptionHandler(CommandLine.IExecutionExceptionHandler executionExceptionHandler) Sets a custom handler for dealing with exceptions that occurred in the
Callable
,Runnable
orMethod
user object of a command when the command was executed via the execute method.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
executionExceptionHandler
- the handler for dealing with exceptions that occurred in the business logic when theexecute
method was invoked.- Returns:
- this CommandLine for method chaining
-
populateCommand
Convenience method that initializes the specified annotated object from the specified command line arguments.
This is equivalent to
new CommandLine(command).parseArgs(args); return command;
All this method does is parse the arguments and populate the annotated fields and methods. The caller is responsible for catching any exceptions, handling requests for usage help or version information, and invoking the business logic. Applications may be interested in using the
execute(String...)
method instead.- Type Parameters:
T
- the type of the annotated object- Parameters:
command
- the object to initialize. This object contains fields annotated with@Option
or@Parameters
.args
- the command line arguments to parse- Returns:
- the specified annotated object
- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ParameterException
- if the specified command line arguments are invalid- Since:
- 0.9.7
- See Also:
-
populateSpec
Convenience method that derives the command specification from the specified interface class, and returns an instance of the specified interface. The interface is expected to have annotated getter methods. Picocli will instantiate the interface and the getter methods will return the option and positional parameter values matched on the command line.
This is equivalent to
CommandLine cli = new CommandLine(spec); cli.parse(args); return cli.getCommand();
All this method does is parse the arguments and return an instance whose annotated methods return the specified values. The caller is responsible for catching any exceptions, handling requests for usage help or version information, and invoking the business logic. Applications may be interested in using the
execute(String...)
method instead.- Type Parameters:
T
- the type of the annotated object- Parameters:
spec
- the interface that defines the command specification. This object contains getter methods annotated with@Option
or@Parameters
.args
- the command line arguments to parse- Returns:
- an instance of the specified annotated interface
- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ParameterException
- if the specified command line arguments are invalid- Since:
- 3.1
- See Also:
-
parse
Deprecated.useparseArgs(String...)
insteadParses the specified command line arguments and returns a list ofCommandLine
objects representing the top-level command and any subcommands (if any) that were recognized and initialized during the parsing process.If parsing succeeds, the first element in the returned list is always
this CommandLine
object. The returned list may contain more elements if subcommands were registered and these subcommands were initialized by matching command line arguments. If parsing fails, aCommandLine.ParameterException
is thrown.All this method does is parse the arguments and populate the annotated fields and methods. The caller is responsible for catching any exceptions, handling requests for usage help or version information, and invoking the business logic. Applications may be interested in using the
execute(String...)
method instead.- Parameters:
args
- the command line arguments to parse- Returns:
- a list with the top-level command and any subcommands initialized by this method
- Throws:
CommandLine.ParameterException
- if the specified command line arguments are invalid; useCommandLine.ParameterException.getCommandLine()
to get the command or subcommand whose user input was invalid
-
parseArgs
Parses the specified command line arguments and returns a list ofParseResult
with the options, positional parameters, and subcommands (if any) that were recognized and initialized during the parsing process.If parsing fails, a
CommandLine.ParameterException
is thrown.All this method does is parse the arguments and populate the annotated fields and methods. The caller is responsible for catching any exceptions, handling requests for usage help or version information, and invoking the business logic. Applications may be interested in using the
execute(String...)
method instead.- Parameters:
args
- the command line arguments to parse- Returns:
- a list with the top-level command and any subcommands initialized by this method
- Throws:
CommandLine.ParameterException
- if the specified command line arguments are invalid; useCommandLine.ParameterException.getCommandLine()
to get the command or subcommand whose user input was invalid- See Also:
-
getParseResult
-
getExecutionResult
public <T> T getExecutionResult()Returns the result of calling the user objectCallable
or invoking the user objectMethod
after parsing the user input, ornull
if this command has not been executed or if thisCommandLine
is for a subcommand that was not specified by the end user on the command line.Implementation note:
It is the responsibility of the
IExecutionStrategy
to set this value.- Type Parameters:
T
- type of the result value- Returns:
- the result of the user object
Callable
orMethod
(may benull
), ornull
if this (sub)command was not executed - Since:
- 4.0
-
setExecutionResult
Sets the result of calling the business logic on the command's user object.- Parameters:
result
- the business logic result, may benull
- Since:
- 4.0
- See Also:
-
clearExecutionResults
public void clearExecutionResults()Clears the execution result of a previous invocation from thisCommandLine
and all subcommands.- Since:
- 4.0
-
defaultExceptionHandler
Convenience method that returnsnew DefaultExceptionHandler<List<Object>>()
. -
printHelpIfRequested
@Deprecated public static boolean printHelpIfRequested(List<CommandLine> parsedCommands, PrintStream out, CommandLine.Help.Ansi ansi) Deprecated.useprintHelpIfRequested(ParseResult)
instead- Since:
- 2.0
-
printHelpIfRequested
Delegates to
executeHelpRequest(ParseResult)
.- Parameters:
parseResult
- contains theCommandLine
objects found during parsing; check these to see if help was requested- Returns:
true
if help was printed,false
otherwise
-
printHelpIfRequested
@Deprecated public static boolean printHelpIfRequested(List<CommandLine> parsedCommands, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi) Deprecated.useexecuteHelpRequest(ParseResult)
insteadDelegates to the implementation of
executeHelpRequest(ParseResult)
.- Parameters:
parsedCommands
- the list ofCommandLine
objects to check if help was requestedout
- thePrintStream
to print help to if requestederr
- the error string to print diagnostic messages to, in addition to the output from the exception handleransi
- for printing help messages using ANSI styles and colors- Returns:
true
if help was printed,false
otherwise
-
printHelpIfRequested
@Deprecated public static boolean printHelpIfRequested(List<CommandLine> parsedCommands, PrintStream out, PrintStream err, CommandLine.Help.ColorScheme colorScheme) Deprecated.useexecuteHelpRequest(ParseResult)
insteadDelegates to the implementation of
executeHelpRequest(ParseResult)
.- Parameters:
parsedCommands
- the list ofCommandLine
objects to check if help was requestedout
- thePrintStream
to print help to if requestederr
- the error string to print diagnostic messages to, in addition to the output from the exception handlercolorScheme
- for printing help messages using ANSI styles and colors- Returns:
true
if help was printed,false
otherwise
-
executeHelpRequest
Helper method that may be useful when processing the
ParseResult
that results from successfully parsing command line arguments. This method prints out usage help to the configured output writer if requested or version help to the configured output writer if requested and returnsCommandLine.Model.CommandSpec.exitCodeOnUsageHelp()
orCommandLine.Model.CommandSpec.exitCodeOnVersionHelp()
, respectively. If the command is aCommandLine.Command.helpCommand()
andrunnable
orcallable
, that command is executed and this method returnsCommandLine.Model.CommandSpec.exitCodeOnUsageHelp()
. Otherwise, if none of the specifiedCommandLine
objects have help requested, this method returnsnull
.Note that this method only looks at the
usageHelp
andversionHelp
attributes. Thehelp
attribute is ignored.Implementation note:
When an error occurs while processing the help request, it is recommended custom Help commands throw a
CommandLine.ParameterException
with a reference to the parent command. This will print the error message and the usage for the parent command, and will use the exit code of the exception handler if one was set.- Parameters:
parseResult
- contains theCommandLine
objects found during parsing; check these to see if help was requested- Returns:
CommandLine.Model.CommandSpec.exitCodeOnUsageHelp()
if usage help was requested,CommandLine.Model.CommandSpec.exitCodeOnVersionHelp()
if version help was requested, andnull
otherwise- See Also:
-
execute
Convenience method to allow command line application authors to avoid some boilerplate code in their application. To use this method, the annotated object that this
CommandLine
is constructed with needs to either implementRunnable
,Callable
, or be aMethod
object. SeegetCommandMethods
for a convenient way to obtain a commandMethod
.This method replaces the
run
,call
andinvoke
convenience methods that were available with previous versions of picocli.Exit Code
This method returns an exit code that applications can use to call
System.exit
. (The return value of theCallable
orMethod
can still be obtained viagetExecutionResult
.) If the user objectCallable
orMethod
returns anint
orInteger
, this will be used as the exit code. Additionally, if the user object implementsIExitCodeGenerator
, an exit code is obtained by calling itsgetExitCode()
method (after invoking the user object).In the case of multiple exit codes the highest value will be used (or if all values are negative, the lowest value will be used).
Exception Handling
This method never throws an exception.
If the user specified invalid input, the parameter exception handler is invoked. By default this prints an error message and the usage help message, and returns an exit code.
If an exception occurred while the user object
Runnable
,Callable
, orMethod
was invoked, this exception is caught and passed to the execution exception handler. The defaultIExecutionExceptionHandler
will rethrow this Exception.Any exception thrown from the
IParameterExceptionHandler
orIExecutionExceptionHandler
is caught, it stacktrace is printed and is mapped to an exit code, using the following logic:If an
IExitCodeExceptionMapper
is configured, this mapper is used to determine the exit code based on the exception.If an
IExitCodeExceptionMapper
is not set, by default this method will return the@Command
annotation'sexitCodeOnInvalidInput
orexitCodeOnExecutionException
value, respectively.Example Usage:
@Command class MyCommand implements Callable<Integer> { public Integer call() { return 123; } } CommandLine cmd = new CommandLine(new MyCommand()); int exitCode = cmd.execute(args); assert exitCode == 123; System.exit(exitCode);
Since
execute
is an instance method, not a static method, applications can do configuration before invoking the command. For example:CommandLine cmd = new CommandLine(new MyCallable()) .setCaseInsensitiveEnumValuesAllowed(true) // configure a non-default parser option .setOut(myOutWriter()) // configure an alternative to System.out .setErr(myErrWriter()) // configure an alternative to System.err .setColorScheme(myColorScheme()); // configure a custom color scheme int exitCode = cmd.execute(args); System.exit(exitCode);
If the specified command has subcommands, the last subcommand specified on the command line is executed. This can be configured by setting the execution strategy. Built-in alternatives are executing the first subcommand, or executing all specified subcommands.
- Parameters:
args
- the command line arguments to parse- Returns:
- the exit code
- Since:
- 4.0
- See Also:
-
parseWithHandler
@Deprecated public List<Object> parseWithHandler(CommandLine.IParseResultHandler handler, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
instead -
parseWithHandler
@Deprecated public <R> R parseWithHandler(CommandLine.IParseResultHandler2<R> handler, String[] args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadReturns the result of calling
parseWithHandlers(IParseResultHandler2, IExceptionHandler2, String...)
with a newCommandLine.DefaultExceptionHandler
in addition to the specified parse result handler and the specified command line arguments.This is a convenience method intended to offer the same ease of use as the
run
andcall
methods, but with more flexibility and better support for nested subcommands.Calling this method roughly expands to:
try { ParseResult parseResult = parseArgs(args); return handler.handleParseResult(parseResult); } catch (ParameterException ex) { return new DefaultExceptionHandler<R>().handleParseException(ex, args); }
Picocli provides some default handlers that allow you to accomplish some common tasks with very little code. The following handlers are available:
CommandLine.RunLast
handler prints help if requested, and otherwise gets the last specified command or subcommand and tries to execute it as aRunnable
orCallable
.CommandLine.RunFirst
handler prints help if requested, and otherwise executes the top-level command as aRunnable
orCallable
.CommandLine.RunAll
handler prints help if requested, and otherwise executes all recognized commands and subcommands asRunnable
orCallable
tasks.CommandLine.DefaultExceptionHandler
prints the error message followed by usage help
- Type Parameters:
R
- the return type of this handler- Parameters:
handler
- the function that will handle the result of successfully parsing the command line argumentsargs
- the command line arguments- Returns:
- an object resulting from handling the parse result or the exception that occurred while parsing the input
- Throws:
CommandLine.ExecutionException
- if the command line arguments were parsed successfully but a problem occurred while processing the parse results; useCommandLine.ExecutionException.getCommandLine()
to get the command or subcommand where processing failed- See Also:
-
parseWithHandlers
@Deprecated public List<Object> parseWithHandlers(CommandLine.IParseResultHandler handler, PrintStream out, CommandLine.Help.Ansi ansi, CommandLine.IExceptionHandler exceptionHandler, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
instead -
parseWithHandlers
@Deprecated public <R> R parseWithHandlers(CommandLine.IParseResultHandler2<R> handler, CommandLine.IExceptionHandler2<R> exceptionHandler, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadTries to parse the specified command line arguments, and if successful, delegates the processing of the resulting
ParseResult
object to the specified handler. If the command line arguments were invalid, theParameterException
thrown from theparse
method is caught and passed to the specifiedCommandLine.IExceptionHandler2
.This is a convenience method intended to offer the same ease of use as the
run
andcall
methods, but with more flexibility and better support for nested subcommands.Calling this method roughly expands to:
ParseResult parseResult = null; try { parseResult = parseArgs(args); return handler.handleParseResult(parseResult); } catch (ParameterException ex) { return exceptionHandler.handleParseException(ex, (String[]) args); } catch (ExecutionException ex) { return exceptionHandler.handleExecutionException(ex, parseResult); }
Picocli provides some default handlers that allow you to accomplish some common tasks with very little code. The following handlers are available:
CommandLine.RunLast
handler prints help if requested, and otherwise gets the last specified command or subcommand and tries to execute it as aRunnable
orCallable
.CommandLine.RunFirst
handler prints help if requested, and otherwise executes the top-level command as aRunnable
orCallable
.CommandLine.RunAll
handler prints help if requested, and otherwise executes all recognized commands and subcommands asRunnable
orCallable
tasks.CommandLine.DefaultExceptionHandler
prints the error message followed by usage help
- Type Parameters:
R
- the return type of the result handler and exception handler- Parameters:
handler
- the function that will handle the result of successfully parsing the command line argumentsexceptionHandler
- the function that can handle theParameterException
thrown when the command line arguments are invalidargs
- the command line arguments- Returns:
- an object resulting from handling the parse result or the exception that occurred while parsing the input
- Throws:
CommandLine.ExecutionException
- if the command line arguments were parsed successfully but a problem occurred while processing the parse resultParseResult
object; useCommandLine.ExecutionException.getCommandLine()
to get the command or subcommand where processing failed- See Also:
-
usage
Equivalent to
new CommandLine(command).usage(out)
. Seeusage(PrintStream)
for details.- Parameters:
command
- the object annotated withCommandLine.Command
,CommandLine.Option
andCommandLine.Parameters
out
- the print stream to print the help message to- Throws:
IllegalArgumentException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotation
-
usage
Equivalent to
new CommandLine(command).usage(out, ansi)
. Seeusage(PrintStream, Help.Ansi)
for details.- Parameters:
command
- the object annotated withCommandLine.Command
,CommandLine.Option
andCommandLine.Parameters
out
- the print stream to print the help message toansi
- whether the usage message should contain ANSI escape codes or not- Throws:
IllegalArgumentException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotation
-
usage
Equivalent to
new CommandLine(command).usage(out, colorScheme)
. Seeusage(PrintStream, Help.ColorScheme)
for details.- Parameters:
command
- the object annotated withCommandLine.Command
,CommandLine.Option
andCommandLine.Parameters
out
- the print stream to print the help message tocolorScheme
- theColorScheme
defining the styles for options, parameters and commands when ANSI is enabled- Throws:
IllegalArgumentException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotation
-
usage
Delegates to
usage(PrintStream, Help.ColorScheme)
with the configured color scheme.- Parameters:
out
- the printStream to print to- See Also:
-
usage
Delegates to
usage(PrintWriter, Help.ColorScheme)
with the configured color scheme.- Parameters:
writer
- the PrintWriter to print to- See Also:
-
usage
Delegates to
usage(PrintStream, Help.ColorScheme)
with the default color scheme.- Parameters:
out
- the printStream to print toansi
- whether the usage message should include ANSI escape codes or not- See Also:
-
usage
Similar tousage(PrintStream, Help.Ansi)
but with the specifiedPrintWriter
instead of aPrintStream
.- Since:
- 3.0
-
usage
Prints a usage help message for the annotated command class to the specified
PrintStream
. Delegates construction of the usage help message to theCommandLine.Help
inner class and is equivalent to:Help.ColorScheme colorScheme = Help.defaultColorScheme(Help.Ansi.AUTO); Help help = getHelpFactory().create(getCommandSpec(), colorScheme) StringBuilder sb = new StringBuilder(); for (String key : getHelpSectionKeys()) { IHelpSectionRenderer renderer = getHelpSectionMap().get(key); if (renderer != null) { sb.append(renderer.render(help)); } } out.print(sb);
Annotate your class with
CommandLine.Command
to control many aspects of the usage help message, including the program name, text of section headings and section contents, and some aspects of the auto-generated sections of the usage help message.To customize the auto-generated sections of the usage help message, like how option details are displayed, instantiate a
CommandLine.Help
object and use aCommandLine.Help.TextTable
with more of fewer columns, a custom layout, and/or a custom option renderer for ultimate control over which aspects of an Option or Field are displayed where.- Parameters:
out
- thePrintStream
to print the usage help message tocolorScheme
- theColorScheme
defining the styles for options, parameters and commands when ANSI is enabled- See Also:
-
usage
Similar tousage(PrintStream, Help.ColorScheme)
, but with the specifiedPrintWriter
instead of aPrintStream
.- Since:
- 3.0
-
getUsageMessage
Similar tousage(PrintStream)
, but returns the usage help message as a String instead of printing it to thePrintStream
.- Since:
- 3.2
-
getUsageMessage
Similar tousage(PrintStream, Help.Ansi)
, but returns the usage help message as a String instead of printing it to thePrintStream
.- Since:
- 3.2
-
getUsageMessage
Similar tousage(PrintStream, Help.ColorScheme)
, but returns the usage help message as a String instead of printing it to thePrintStream
.- Since:
- 3.2
-
printVersionHelp
Delegates to
printVersionHelp(PrintStream, Help.Ansi)
with the ANSI setting of the configured color scheme.- Parameters:
out
- the printStream to print to- Since:
- 0.9.8
- See Also:
-
printVersionHelp
Prints version information from the
CommandLine.Command.version()
annotation to the specifiedPrintStream
. Each element of the array of version strings is printed on a separate line. Version strings may contain markup for colors and style.- Parameters:
out
- the printStream to print toansi
- whether the usage message should include ANSI escape codes or not- Since:
- 0.9.8
- See Also:
-
printVersionHelp
Prints version information from the
CommandLine.Command.version()
annotation to the specifiedPrintStream
. Each element of the array of version strings is formatted with the specified parameters, and printed on a separate line. Both version strings and parameters may contain markup for colors and style.- Parameters:
out
- the printStream to print toansi
- whether the usage message should include ANSI escape codes or notparams
- Arguments referenced by the format specifiers in the version strings- Since:
- 1.0.0
- See Also:
-
printVersionHelp
Delegates to
printVersionHelp(PrintWriter, Help.Ansi, Object...)
with the ANSI setting of the configured color scheme.- Parameters:
out
- the PrintWriter to print to
-
printVersionHelp
Prints version information from the
CommandLine.Command.version()
annotation to the specifiedPrintWriter
. Each element of the array of version strings is formatted with the specified parameters, and printed on a separate line. Both version strings and parameters may contain markup for colors and style.- Parameters:
out
- the PrintWriter to print toansi
- whether the usage message should include ANSI escape codes or notparams
- Arguments referenced by the format specifiers in the version strings- See Also:
-
call
Deprecated.useexecute(String...)
andgetExecutionResult()
insteadEquivalent to
new CommandLine(callable).execute(args)
, except for the return value.- Type Parameters:
C
- the annotated object must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callable
- the command to call when parsing succeeds.args
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.0
- See Also:
-
call
@Deprecated public static <C extends Callable<T>,T> T call(C callable, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
call(Callable, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages andCommandLine.Help.Ansi.AUTO
.- Type Parameters:
C
- the annotated object must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callable
- the command to call when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helpargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- See Also:
-
call
@Deprecated public static <C extends Callable<T>,T> T call(C callable, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
call(Callable, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages.- Type Parameters:
C
- the annotated object must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callable
- the command to call when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helpansi
- the ANSI style to useargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- See Also:
-
call
@Deprecated public static <C extends Callable<T>,T> T call(C callable, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadConvenience method to allow command line application authors to avoid some boilerplate code in their application. The annotated object needs to implement
Callable
.Consider using the
execute(String...)
method instead:CommandLine cmd = new CommandLine(callable) .setOut(myOutWriter()) // System.out by default .setErr(myErrWriter()) // System.err by default .setColorScheme(myColorScheme()); // default color scheme, Ansi.AUTO by default int exitCode = cmd.execute(args); //System.exit(exitCode);
If the specified Callable command has subcommands, the last subcommand specified on the command line is executed.
- Type Parameters:
C
- the annotated object must implement CallableT
- the return type of the specifiedCallable
- Parameters:
callable
- the command to call when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helperr
- the printStream to print diagnostic messages toansi
- including whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.0
-
call
@Deprecated public static <C extends Callable<T>,T> T call(Class<C> callableClass, CommandLine.IFactory factory, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadEquivalent to
new CommandLine(callableClass, factory).execute(args)
, except for the return value.- Type Parameters:
C
- the annotated class must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callableClass
- class of the command to call when parsing succeeds.factory
- the factory responsible for instantiating the specified callable class and potentially inject other componentsargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.2
- See Also:
-
call
@Deprecated public static <C extends Callable<T>,T> T call(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
call(Class, IFactory, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages, andCommandLine.Help.Ansi.AUTO
.- Type Parameters:
C
- the annotated class must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callableClass
- class of the command to call when parsing succeeds.factory
- the factory responsible for instantiating the specified callable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helpargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.2
-
call
@Deprecated public static <C extends Callable<T>,T> T call(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
call(Class, IFactory, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages.- Type Parameters:
C
- the annotated class must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callableClass
- class of the command to call when parsing succeeds.factory
- the factory responsible for instantiating the specified callable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helpansi
- the ANSI style to useargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.2
-
call
@Deprecated public static <C extends Callable<T>,T> T call(Class<C> callableClass, CommandLine.IFactory factory, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadConvenience method to allow command line application authors to avoid some boilerplate code in their application. The specified factory will create an instance of the specified
callableClass
; use this method instead ofcall(Callable, ...)
if you want to use a factory that performs Dependency Injection. The annotated class needs to implementCallable
.Consider using the
execute(String...)
method instead:CommandLine cmd = new CommandLine(callableClass, factory) .setOut(myOutWriter()) // System.out by default .setErr(myErrWriter()) // System.err by default .setColorScheme(myColorScheme()); // default color scheme, Ansi.AUTO by default int exitCode = cmd.execute(args); //System.exit(exitCode);
If the specified Callable command has subcommands, the last subcommand specified on the command line is executed.
- Type Parameters:
C
- the annotated class must implement CallableT
- the return type of the most specific command (must implementCallable
)- Parameters:
callableClass
- class of the command to call when parsing succeeds.factory
- the factory responsible for instantiating the specified callable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helperr
- the printStream to print diagnostic messages toansi
- the ANSI style to useargs
- the command line arguments to parse- Returns:
null
if an error occurred while parsing the command line options, or if help was requested and printed. Otherwise returns the result of calling the Callable- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Callable throws an exception- Since:
- 3.2
-
run
Deprecated.useexecute(String...)
insteadEquivalent to
new CommandLine(runnable).execute(args)
.- Type Parameters:
R
- the annotated object must implement Runnable- Parameters:
runnable
- the command to run when parsing succeeds.args
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.0
- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(R runnable, PrintStream out, String... args) Deprecated.useexecute(String...)
insteadDelegates to
run(Runnable, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages andCommandLine.Help.Ansi.AUTO
.- Type Parameters:
R
- the annotated object must implement Runnable- Parameters:
runnable
- the command to run when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helpargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(R runnable, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadDelegates to
run(Runnable, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages.- Type Parameters:
R
- the annotated object must implement Runnable- Parameters:
runnable
- the command to run when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helpansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(R runnable, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadConvenience method to allow command line application authors to avoid some boilerplate code in their application. The annotated object needs to implement
Runnable
.Consider using the
execute(String...)
method instead:CommandLine cmd = new CommandLine(runnable) .setOut(myOutWriter()) // System.out by default .setErr(myErrWriter()) // System.err by default .setColorScheme(myColorScheme()); // default color scheme, Ansi.AUTO by default int exitCode = cmd.execute(args); //System.exit(exitCode);
If the specified Runnable command has subcommands, the last subcommand specified on the command line is executed.
From picocli v2.0, this method prints usage help or version help if requested, and any exceptions thrown by the
Runnable
are caught and rethrown wrapped in anExecutionException
.- Type Parameters:
R
- the annotated object must implement Runnable- Parameters:
runnable
- the command to run when parsing succeeds.out
- the printStream to print the usage help message to when the user requested helperr
- the printStream to print diagnostic messages toansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified command object does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.0
-
run
@Deprecated public static <R extends Runnable> void run(Class<R> runnableClass, CommandLine.IFactory factory, String... args) Deprecated.useexecute(String...)
insteadEquivalent to
new CommandLine(runnableClass, factory).execute(args)
.- Type Parameters:
R
- the annotated class must implement Runnable- Parameters:
runnableClass
- class of the command to run when parsing succeeds.factory
- the factory responsible for instantiating the specified Runnable class and potentially injecting other componentsargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.2
- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, String... args) Deprecated.useexecute(String...)
insteadDelegates to
run(Class, IFactory, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages, andCommandLine.Help.Ansi.AUTO
.- Type Parameters:
R
- the annotated class must implement Runnable- Parameters:
runnableClass
- class of the command to run when parsing succeeds.factory
- the factory responsible for instantiating the specified Runnable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helpargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.2
- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadDelegates to
run(Class, IFactory, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.err
for diagnostic error messages.- Type Parameters:
R
- the annotated class must implement Runnable- Parameters:
runnableClass
- class of the command to run when parsing succeeds.factory
- the factory responsible for instantiating the specified Runnable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helpansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified class cannot be instantiated by the factory, or does not have aCommandLine.Command
,CommandLine.Option
orCommandLine.Parameters
annotationCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.2
- See Also:
-
run
@Deprecated public static <R extends Runnable> void run(Class<R> runnableClass, CommandLine.IFactory factory, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
insteadConvenience method to allow command line application authors to avoid some boilerplate code in their application. The specified factory will create an instance of the specified
runnableClass
; use this method instead ofrun(Runnable, ...)
if you want to use a factory that performs Dependency Injection. The annotated class needs to implementRunnable
.Consider using the
execute(String...)
method instead:CommandLine cmd = new CommandLine(runnableClass, factory) .setOut(myOutWriter()) // System.out by default .setErr(myErrWriter()) // System.err by default .setColorScheme(myColorScheme()); // default color scheme, Ansi.AUTO by default int exitCode = cmd.execute(args); //System.exit(exitCode);
If the specified Runnable command has subcommands, the last subcommand specified on the command line is executed.
This method prints usage help or version help if requested, and any exceptions thrown by the
Runnable
are caught and rethrown wrapped in anExecutionException
.- Type Parameters:
R
- the annotated class must implement Runnable- Parameters:
runnableClass
- class of the command to run when parsing succeeds.factory
- the factory responsible for instantiating the specified Runnable class and potentially injecting other componentsout
- the printStream to print the usage help message to when the user requested helperr
- the printStream to print diagnostic messages toansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Since:
- 3.2
-
invoke
Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
invoke(String, Class, PrintStream, PrintStream, Help.Ansi, String...)
withSystem.out
for requested usage help messages,System.err
for diagnostic error messages, andCommandLine.Help.Ansi.AUTO
.- Parameters:
methodName
- the@Command
-annotated method to build aCommandLine.Model.CommandSpec
model from, and run when parsing succeeds.cls
- the class where the@Command
-annotated method is declared, or a subclassargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified method does not have aCommandLine.Command
annotation, or if the specified class contains multiple@Command
-annotated methods with the specified nameCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.6
- See Also:
-
invoke
@Deprecated public static Object invoke(String methodName, Class<?> cls, PrintStream out, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
invoke(String, Class, PrintStream, PrintStream, Help.Ansi, String...)
with the specified stream for requested usage help messages,System.err
for diagnostic error messages, andCommandLine.Help.Ansi.AUTO
.- Parameters:
methodName
- the@Command
-annotated method to build aCommandLine.Model.CommandSpec
model from, and run when parsing succeeds.cls
- the class where the@Command
-annotated method is declared, or a subclassout
- the printstream to print requested help message toargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified method does not have aCommandLine.Command
annotation, or if the specified class contains multiple@Command
-annotated methods with the specified nameCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.6
- See Also:
-
invoke
@Deprecated public static Object invoke(String methodName, Class<?> cls, PrintStream out, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadDelegates to
invoke(String, Class, PrintStream, PrintStream, Help.Ansi, String...)
with the specified stream for requested usage help messages,System.err
for diagnostic error messages, and the specified Ansi mode.- Parameters:
methodName
- the@Command
-annotated method to build aCommandLine.Model.CommandSpec
model from, and run when parsing succeeds.cls
- the class where the@Command
-annotated method is declared, or a subclassout
- the printstream to print requested help message toansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified method does not have aCommandLine.Command
annotation, or if the specified class contains multiple@Command
-annotated methods with the specified nameCommandLine.ExecutionException
- if the Runnable throws an exception- Since:
- 3.6
- See Also:
-
invoke
@Deprecated public static Object invoke(String methodName, Class<?> cls, PrintStream out, PrintStream err, CommandLine.Help.Ansi ansi, String... args) Deprecated.useexecute(String...)
andgetExecutionResult()
insteadConvenience method to allow command line application authors to avoid some boilerplate code in their application. Constructs a
CommandLine.Model.CommandSpec
model from the@Option
and@Parameters
-annotated method parameters of the@Command
-annotated method, parses the specified command line arguments and invokes the specified method.Consider using the
execute(String...)
method instead:Method commandMethod = getCommandMethods(cls, methodName).get(0); CommandLine cmd = new CommandLine(commandMethod) .setOut(myOutWriter()) // System.out by default .setErr(myErrWriter()) // System.err by default .setColorScheme(myColorScheme()); // default color scheme, Ansi.AUTO by default int exitCode = cmd.execute(args); //System.exit(exitCode);
- Parameters:
methodName
- the@Command
-annotated method to build aCommandLine.Model.CommandSpec
model from, and run when parsing succeeds.cls
- the class where the@Command
-annotated method is declared, or a subclassout
- the printStream to print the usage help message to when the user requested helperr
- the printStream to print diagnostic messages toansi
- whether the usage message should include ANSI escape codes or notargs
- the command line arguments to parse- Throws:
CommandLine.InitializationException
- if the specified method does not have aCommandLine.Command
annotation, or if the specified class contains multiple@Command
-annotated methods with the specified nameCommandLine.ExecutionException
- if the method throws an exception- Since:
- 3.6
-
getCommandMethods
Helper to get methods of a class annotated with
@Command
via reflection, optionally filtered by method name (not@Command.name
). Methods have to be either public (inherited) members or be declared bycls
, that is "inherited" static or protected methods will not be picked up.- Parameters:
cls
- the class to search for methods annotated with@Command
methodName
- if notnull
, return only methods whose method name (not@Command.name
) equals this string. Ignored ifnull
.- Returns:
- the matching command methods, or an empty list
- Since:
- 3.6.0
- See Also:
-
registerConverter
Registers the specified type converter for the specified class. When initializing fields annotated with
CommandLine.Option
, the field's type is used as a lookup key to find the associated type converter, and this type converter converts the original command line argument string value to the correct type.Java 8 lambdas make it easy to register custom type converters:
commandLine.registerConverter(java.nio.file.Path.class, s -> java.nio.file.Paths.get(s)); commandLine.registerConverter(java.time.Duration.class, s -> java.time.Duration.parse(s));
Built-in type converters are pre-registered for the following java 1.5 types:
- all primitive types
- all primitive wrapper types: Boolean, Byte, Character, Double, Float, Integer, Long, Short
- any enum
- java.io.File
- java.math.BigDecimal
- java.math.BigInteger
- java.net.InetAddress
- java.net.URI
- java.net.URL
- java.nio.charset.Charset
- java.sql.Time
- java.util.Date
- java.util.UUID
- java.util.regex.Pattern
- StringBuilder
- CharSequence
- String
The specified converter will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment the converter is registered. Subcommands added later will not have this converter added automatically. To ensure a custom type converter is available to all subcommands, register the type converter last, after adding subcommands.- Type Parameters:
K
- the target type- Parameters:
cls
- the target class to convert parameter string values toconverter
- the class capable of converting string values to the specified target type- Returns:
- this CommandLine object, to allow method chaining
- See Also:
-
getSeparator
Returns the String that separates option names from option values when parsing command line options.- Returns:
- the String the parser uses to separate option names from option values
- See Also:
-
setSeparator
Sets the String the parser uses to separate option names from option values to the specified value. The separator may also be set declaratively with theCommandLine.Command.separator()
annotation attribute.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
separator
- the String that separates option names from option values- Returns:
- this
CommandLine
object, to allow method chaining - See Also:
-
getResourceBundle
Returns the ResourceBundle of this command ornull
if no resource bundle is set.- Since:
- 3.6
- See Also:
-
setResourceBundle
Sets the ResourceBundle containing usage help message strings.The specified bundle will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will not be impacted. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
bundle
- the ResourceBundle containing usage help message strings- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.6
- See Also:
-
getUsageHelpWidth
public int getUsageHelpWidth()Returns the maximum width of the usage help message. The default is 80. -
setUsageHelpWidth
Sets the maximum width of the usage help message. Longer lines are wrapped.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
width
- the maximum width of the usage help message- Returns:
- this
CommandLine
object, to allow method chaining - See Also:
-
isUsageHelpAutoWidth
public boolean isUsageHelpAutoWidth()Returns whether picocli should attempt to detect the terminal size and adjust the usage help message width to take the full terminal width. End users may enable this by setting system property"picocli.usage.width"
toAUTO
, and may disable this by setting this system property to a numeric value. This feature requires Java 7 or greater. The default isfalse
.- Since:
- 4.0
- See Also:
-
setUsageHelpAutoWidth
Sets whether picocli should attempt to detect the terminal size and adjust the usage help message width to take the full terminal width. The default isfalse
.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
detectTerminalSize
- whether picocli should attempt to detect the terminal size- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 4.0
- See Also:
-
getCommandName
Returns the command name (also called program name) displayed in the usage help synopsis.- Returns:
- the command name (also called program name) displayed in the usage
- Since:
- 2.0
- See Also:
-
setCommandName
Sets the command name (also called program name) displayed in the usage help synopsis to the specified value. Note that this method only modifies the usage help message, it does not impact parsing behaviour. The command name may also be set declaratively with theCommandLine.Command.name()
annotation attribute.- Parameters:
commandName
- command name (also called program name) displayed in the usage help synopsis- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 2.0
- See Also:
-
isExpandAtFiles
public boolean isExpandAtFiles()Returns whether arguments starting with'@'
should be treated as the path to an argument file and its contents should be expanded into separate arguments for each line in the specified file. This property istrue
by default.- Returns:
- whether "argument files" or
@files
should be expanded into their content - Since:
- 2.1
- See Also:
-
setExpandAtFiles
Sets whether arguments starting with'@'
should be treated as the path to an argument file and its contents should be expanded into separate arguments for each line in the specified file. (true
by default.)- Parameters:
expandAtFiles
- whether "argument files" or@files
should be expanded into their content- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 2.1
- See Also:
-
getAtFileCommentChar
Returns the character that starts a single-line comment ornull
if all content of argument files should be interpreted as arguments (without comments). If specified, all characters from the comment character to the end of the line are ignored.- Returns:
- the character that starts a single-line comment or
null
. The default is'#'
. - Since:
- 3.5
- See Also:
-
setAtFileCommentChar
Sets the character that starts a single-line comment ornull
if all content of argument files should be interpreted as arguments (without comments). If specified, all characters from the comment character to the end of the line are ignored.- Parameters:
atFileCommentChar
- the character that starts a single-line comment ornull
. The default is'#'
.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.5
- See Also:
-
isUseSimplifiedAtFiles
public boolean isUseSimplifiedAtFiles()Returns whether to use a simplified argument file format that is compatible with JCommander. In this format, every line (except empty lines and comment lines) is interpreted as a single argument. Arguments containing whitespace do not need to be quoted. When system property"picocli.useSimplifiedAtFiles"
is defined, the system property value overrides the programmatically set value.- Returns:
- whether to use a simplified argument file format. The default is
false
. - Since:
- 3.9
- See Also:
-
setUseSimplifiedAtFiles
Sets whether to use a simplified argument file format that is compatible with JCommander. In this format, every line (except empty lines and comment lines) is interpreted as a single argument. Arguments containing whitespace do not need to be quoted. When system property"picocli.useSimplifiedAtFiles"
is defined, the system property value overrides the programmatically set value.- Parameters:
simplifiedAtFiles
- whether to use a simplified argument file format. The default isfalse
.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 3.9
- See Also:
-
getNegatableOptionTransformer
Returns theINegatableOptionTransformer
used to create the negative form of negatable options. By default this returns the result ofCommandLine.RegexTransformer.createDefault()
.- Returns:
- the
INegatableOptionTransformer
used to create negative option names. - Since:
- 4.0
- See Also:
-
setNegatableOptionTransformer
public CommandLine setNegatableOptionTransformer(CommandLine.INegatableOptionTransformer transformer) Sets theINegatableOptionTransformer
used to create the negative form of negatable options.The specified setting will be registered with this
CommandLine
and the full hierarchy of its subcommands and nested sub-subcommands at the moment this method is called. Subcommands added later will have the default setting. To ensure a setting is applied to all subcommands, call the setter last, after adding subcommands.- Parameters:
transformer
- theINegatableOptionTransformer
used to create negative option names.- Returns:
- this
CommandLine
object, to allow method chaining - Since:
- 4.0
- See Also:
-
defaultFactory
Returns the defaultCommandLine.IFactory
implementation used if no factory was specified in theCommandLine constructor
.This implementation has special logic for instantiating
Collections
andMaps
, and otherwise tries to create an instance by invoking the default constructor of the specified class.Special logic for instantiating Collections and Maps:
// if class is an interface that extends java.util.Collection, return a new instance of: 1. List -> ArrayList 2. SortedSet -> TreeSet 3. Set -> LinkedHashSet 4. Queue -> LinkedList 5. Collection -> ArrayList // if extending or implementing java.util.Map: 1. try invoking the default constructor; return this on success. 2. if this fails, return a LinkedHashMap
- Since:
- 4.0
-
execute(String...)