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

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

Introduction

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

The text is from its open source code.

Constructor

ArgumentBuilder()
Creates a new ArgumentBuilder instance

Method

Argumentcreate()
Creates a new Argument instance using the options specified in this ArgumentBuilder.
ArgumentBuilderreset()
Resets the ArgumentBuilder to the defaults for a new Argument.
ArgumentBuilderwithConsumeRemaining(final String newConsumeRemaining)
Sets the "consume remaining" option, defaults to "--".
ArgumentBuilderwithDefault(final Object defaultValue)
Sets the default value.
ArgumentBuilderwithInitialSeparator(final char newInitialSeparator)
Sets the character used to separate the values from the option.
ArgumentBuilderwithMaximum(final int newMaximum)
Sets the maximum number of values allowed for the argument to be valid.
ArgumentBuilderwithMinimum(final int newMinimum)
Sets the minimum number of values needed for the argument to be valid.
ArgumentBuilderwithName(final String newName)
Sets the name of the argument.
ArgumentBuilderwithSubsequentSeparator(final char newSubsequentSeparator)
Sets the character used to separate the values from each other.