Java org.apache.commons.cli2 CommandLine fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.cli2 CommandLine fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.cli2 CommandLine.

The text is from its open source code.

Method

BooleangetSwitch(final String trigger)
Retrieves the Boolean value associated with the specified Switch
BooleangetSwitch(final Option option)
Retrieves the Boolean value associated with the specified Switch
ObjectgetValue(final String trigger, final Object defaultValue)
Retrieves the single Argument value associated with the specified Option
ObjectgetValue(final Option option, final Object defaultValue)
Retrieves the single Argument value associated with the specified Option
ObjectgetValue(final String trigger)
Retrieves the single Argument value associated with the specified Option
ObjectgetValue(final Option option)
Retrieves the single Argument value associated with the specified Option
ListgetValues(final String trigger)
Retrieves the Argument values associated with the specified Option
ListgetValues(final Option option)
Retrieves the Argument values associated with the specified Option
booleanhasOption(final String trigger)
Detects the presence of an option with the specified trigger in this CommandLine.
booleanhasOption(final Option option)
Detects the presence of an option in this CommandLine.