Package | Description |
---|---|
org.apache.commons.cli |
Apache Commons CLI provides a simple API for presenting, processing and validating a Command Line Interface.
|
Modifier and Type | Field and Description |
---|---|
protected CommandLine |
DefaultParser.cmd
The command-line instance.
|
protected CommandLine |
Parser.cmd
Deprecated.
CommandLine instance
|
Modifier and Type | Method and Description |
---|---|
CommandLine |
CommandLine.Builder.build() |
CommandLine |
CommandLineParser.parse(Options options,
java.lang.String[] arguments)
Parses the arguments according to the specified options.
|
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments) |
CommandLine |
Parser.parse(Options options,
java.lang.String[] arguments)
Deprecated.
Parses the specified
arguments based on the specified Options . |
CommandLine |
CommandLineParser.parse(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption)
Parses the arguments according to the specified options.
|
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
CommandLine |
Parser.parse(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption)
Deprecated.
Parses the specified
arguments based on the specified Options . |
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments,
java.util.Properties properties)
Parses the arguments according to the specified options and properties.
|
CommandLine |
Parser.parse(Options options,
java.lang.String[] arguments,
java.util.Properties properties)
Deprecated.
Parse the arguments according to the specified options and properties.
|
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments,
java.util.Properties properties,
boolean stopAtNonOption)
Parses the arguments according to the specified options and properties.
|
CommandLine |
Parser.parse(Options options,
java.lang.String[] arguments,
java.util.Properties properties,
boolean stopAtNonOption)
Deprecated.
Parse the arguments according to the specified options and properties.
|