Package coneforest.cli
package coneforest.cli
GNU-compatible command-line options processor.
Features
- Support for either short (
-V
) or long (--version
) option forms. - Support for options with arguments (
-o file.txt
,-ofile.txt
,--output-file file.txt
,--output-file=file.txt
). - Short options can be bundled (
-xvf
). - Toggle options processing with
--
.
- Author:
- Anton Shvetz
-
ClassDescriptionBase class representing an abstract option.An option holding a
Boolean
value.An abstract option holding a list of objects.An option holding a list ofDouble
values.An option holding a list ofFloat
values.An option holding a list ofInteger
values.An option holding a list ofLong
values.An option holding a list ofString
values.A counter option.An option holding aDouble
value.A flag option.An option holding aFloat
value.OptionHolder<T>An abstract option holding an object.An option holding aInteger
value.An option holding aLong
value.An option holding aString
value.A toggle option.An abstract option with argument.An abstract option without argument.Thrown when error occured during options processing.Options processor.