Package org.apache.commons.cli
Class CommandLine.Builder
- java.lang.Object
-
- org.apache.commons.cli.CommandLine.Builder
-
- Enclosing class:
- CommandLine
public static final class CommandLine.Builder extends java.lang.Object
A nested builder class to createCommandLine
instance using descriptive methods.- Since:
- 1.4
-
-
Field Summary
Fields Modifier and Type Field Description private CommandLine
commandLine
CommandLine that is being build by this Builder.
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommandLine.Builder
addArg(java.lang.String arg)
Add left-over unrecognized option/argument.CommandLine.Builder
addOption(Option opt)
Add an option to the command line.CommandLine
build()
-
-
-
Field Detail
-
commandLine
private final CommandLine commandLine
CommandLine that is being build by this Builder.
-
-
Method Detail
-
addOption
public CommandLine.Builder addOption(Option opt)
Add an option to the command line. The values of the option are stored.- Parameters:
opt
- the processed option- Returns:
- this Builder instance for method chaining.
-
addArg
public CommandLine.Builder addArg(java.lang.String arg)
Add left-over unrecognized option/argument.- Parameters:
arg
- the unrecognized option/argument.- Returns:
- this Builder instance for method chaining.
-
build
public CommandLine build()
-
-