Uses of Class org.apache.commons.cli.Options

Uses in package org.apache.commons.cli

Fields of type org.apache.commons.cli.Options

Options
current Options
Options
the command line Options

Methods with parameter type org.apache.commons.cli.Options

String[]
BasicParser.flatten(Options options, String[] arguments, boolean stopAtNonOption)
A simple implementation of Parser's abstract flatten method.
String[]
GnuParser.flatten(Options options, String[] arguments, boolean stopAtNonOption)
This flatten method does so using the following rules:
  1. 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.
String[]
Parser.flatten(Options opts, String[] arguments, boolean stopAtNonOption)
Subclasses must implement this method to reduce the arguments that have been passed to the parse method.
String[]
PosixParser.flatten(Options options, String[] arguments, boolean stopAtNonOption)
An implementation of Parser's abstract flatten method.
CommandLine
CommandLineParser.parse(Options options, String[] arguments)
Parse the arguments according to the specified options.
CommandLine
Parser.parse(Options options, String[] arguments)
Parses the specified arguments based on the specifed Options.
CommandLine
CommandLineParser.parse(Options options, String[] arguments, boolean stopAtNonOption)
Parse the arguments according to the specified options.
CommandLine
Parser.parse(Options opts, String[] arguments, boolean stopAtNonOption)
Parses the specified arguments based on the specifed Options.
void
HelpFormatter.printHelp(PrintWriter pw, int width, String cmdLineSyntax, String header, Options options, int leftPad, int descPad, String footer)
void
HelpFormatter.printHelp(PrintWriter pw, int width, String cmdLineSyntax, String header, Options options, int leftPad, int descPad, String footer, boolean autoUsage)
void
HelpFormatter.printHelp(String cmdLineSyntax, String header, Options options, String footer)
void
HelpFormatter.printHelp(String cmdLineSyntax, String header, Options options, String footer, boolean autoUsage)
void
HelpFormatter.printHelp(String cmdLineSyntax, Options options)
void
HelpFormatter.printHelp(String cmdLineSyntax, Options options, boolean autoUsage)
void
HelpFormatter.printHelp(int width, String cmdLineSyntax, String header, Options options, String footer)
void
HelpFormatter.printHelp(int width, String cmdLineSyntax, String header, Options options, String footer, boolean autoUsage)
void
HelpFormatter.printOptions(PrintWriter pw, int width, Options options, int leftPad, int descPad)
void
HelpFormatter.printUsage(PrintWriter pw, int width, String app, Options options)
Prints the usage statement for the specified application.
StringBuffer
HelpFormatter.renderOptions(StringBuffer sb, int width, Options options, int leftPad, int descPad)

Methods with return type org.apache.commons.cli.Options

Options
Options.addOption(String opt, String longOpt, boolean hasArg, String description)
Add an option that contains a short-name and a long-name

It may be specified as requiring an argument.

Options
Options.addOption(String opt, boolean hasArg, String description)
Add an option that only contains a short-name

It may be specified as requiring an argument.

Options
Adds an option instance
Options
Add the specified option group.
Options
Returns the Options instance represented by pattern.