diff --git a/src/site/xdoc/properties.xml b/src/site/xdoc/properties.xml index 63112431b..e5e43f9d8 100644 --- a/src/site/xdoc/properties.xml +++ b/src/site/xdoc/properties.xml @@ -31,7 +31,7 @@ Option has. All of these can be set using the accessors or using the methods defined in the - OptionBuilder. + Option.Builder.

@@ -40,68 +40,80 @@ - - - + + + - - - + + + - + - + - - - + + + - - - + + + - - - + + + - - - + + + - + - + - - - + + + + + + + + - - + + - + - + + + + + +
Description
optjava.lang.Stringthe identification string of the Option.argbooleanA flag to say whether the option takes an argument.
longOptjava.lang.Stringan alias and more descriptive identification stringargsbooleanA flag to say whether the option takes more than one argument.
descriptionargName java.lang.Stringa description of the function of the optionThe name of the argument value for the usage statement.
requiredbooleana flag to say whether the option must appear on - the command line.converterorg.apache.commons.cli.Converter<T, E extends Throwable>A FunctionalInterface that converts a String to type T and may throw an exception E. When + CommandLine.getParsedValue() is called this FunctionalInterface will perform the conversion from the + command line argument to the parsed type. This is used when a desired type is not registered, or to + provide a custom type implementation. The 'type' property is not required to use the 'converter' property.
argbooleana flag to say whether the option takes an argumentdeprecatedorg.apache.commons.cli.DeprecatedAttributesMarks the option as deprecated and has the deprecation properties.
argsbooleana flag to say whether the option takes more than one argumentdescriptionjava.lang.StringA description of the function of the option.
optionalArgbooleana flag to say whether the option's argument is optionallongOptjava.lang.StringAn alias and more descriptive identification string. May be null or not specified if 'opt' is provided.
argNameopt java.lang.Stringthe name of the argument value for the usage statementThe identification string of the Option. May be null or not specified if 'longOpt' is provided.
valueSeparatorcharthe character value used to split the argument string, that - is used in conjunction with multipleArgs e.g. - if the separator is ',' and the argument string is 'a,b,c' then - there are three argument values, 'a', 'b' and 'c'.optionalArgbooleanA flag to say whether the option's argument is optional.
requiredbooleanA flag to say whether the option must appear on the command line.
typejava.lang.Objectthe type of the argumentjava.lang.Class<?>The class of the object returned from getParsedValue(). The class must be registered in TypeHandler instance. + See also 'converter' property.
value java.lang.Stringthe value of the optionThe value of the option.
values java.lang.String[]the values of the optionThe values of the option.
valueSeparatorcharThe character value used to split the argument string, that is used in conjunction with multipleArgs e.g. + if the separator is ',' and the argument string is 'a,b,c' then there are three argument values, 'a', 'b' + and 'c'.