protected java.lang.String[] |
BasicParser.flatten(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
Deprecated.
|
protected java.lang.String[] |
GnuParser.flatten(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
Deprecated.
This flatten method does so using the following rules:
If an Option exists for the first character of the arguments entry AND an
Option does not exist for the whole argument then add the first character as an option to the
processed tokens list e.g.
|
protected abstract java.lang.String[] |
Parser.flatten(Options opts,
java.lang.String[] arguments,
boolean stopAtNonOption) |
Deprecated.
Subclasses must implement this method to reduce the arguments that have been passed to the parse method.
|
protected java.lang.String[] |
PosixParser.flatten(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
Deprecated.
|
CommandLine |
CommandLineParser.parse(Options options,
java.lang.String[] arguments) |
Parses the arguments according to 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) |
|
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
|
CommandLine |
DefaultParser.parse(Options options,
java.lang.String[] arguments,
java.util.Properties properties) |
Parses 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) |
Deprecated.
Parses the specified arguments based on the specified Options .
|
CommandLine |
Parser.parse(Options options,
java.lang.String[] arguments,
boolean stopAtNonOption) |
Deprecated.
Parses the specified arguments based on the specified Options .
|
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 |
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.
|
void |
HelpFormatter.printHelp(int width,
java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
java.lang.String footer) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(int width,
java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
java.lang.String footer,
boolean autoUsage) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.io.PrintWriter pw,
int width,
java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
int leftPad,
int descPad,
java.lang.String footer) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.io.PrintWriter pw,
int width,
java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
int leftPad,
int descPad,
java.lang.String footer,
boolean autoUsage) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
java.lang.String footer) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.lang.String cmdLineSyntax,
java.lang.String header,
Options options,
java.lang.String footer,
boolean autoUsage) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.lang.String cmdLineSyntax,
Options options) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printHelp(java.lang.String cmdLineSyntax,
Options options,
boolean autoUsage) |
Print the help for options with the specified command line syntax.
|
void |
HelpFormatter.printOptions(java.io.PrintWriter pw,
int width,
Options options,
int leftPad,
int descPad) |
Print the help for the specified Options to the specified writer, using the specified width, left padding and
description padding.
|
void |
HelpFormatter.printUsage(java.io.PrintWriter pw,
int width,
java.lang.String app,
Options options) |
Prints the usage statement for the specified application.
|
protected java.lang.StringBuffer |
HelpFormatter.renderOptions(java.lang.StringBuffer sb,
int width,
Options options,
int leftPad,
int descPad) |
Render the specified Options and return the rendered Options in a StringBuffer.
|
protected void |
Parser.setOptions(Options options) |
Deprecated.
|