Lines Matching refs:Added
6 Added: JCommander#acceptUnknownOption and JCommander#getUnknownArgs
7 Added: JCommander#allowAbbreviatedOptions (default: false)
8 Added: JCommander#setCaseSensitiveOptions (default: true)
9 Added: Support for enums (Scott M Stark)
23 Added: IValueValidator to validate parameter values (typed) as opposed to IParameterValidator which…
24 Added: echoInput, used when password=true to echo the characters (Jason Wheeler)
25 Added: @Parameter(help = true)
35 Added: Default passwords are no longer displayed in the usage (Paul Mendelson)
36 Added: Variable arities now work magically, no need for IVariableArity any more
47 Added: @DynamicParameter
53 Added: Support for delegating parameter definitions to child classes (rodionmoiseev)
54 Added: @Parameter(commandNames) so that command names can be specified with annotations
55 Added: Support for enums (Adrian Muraru)
62 Added: commandDescriptionKey to @Parameters, to allow internationalized command descriptions
63 Added: JCommander#setParameterDescriptionComparator for better control over usage()
72 Added: Default converter factories can be overridden (Scott Clasen)
73 Added: IParameterValidator
74 Added: Don't display "Options:" if none were defined
75 Added: Enforce that the type of the main parameter is a List
76 Added: usage() now displays the options for each command as well
84 Added: Added a constructor that takes a Bundle only, https://github.com/cbeust/jcommander/pull/47 (…
90 Added: Boolean parameters with arity 0 (e.g. "foo -debug")
96 Added: Command usages are now shown in the order they were added to the JCommander object
103 Added: @Parameters(commandDescription = "command description")
104 Added: now throwing an exception if required main parameters are not supplied
110 Added: overloaded versions of usage() with StringBuilders
111 Added: inheritance support (Guillaume Sauthier)
112 Added: support for commands (e.g. "main add --author=cbeust Foo.java")
113 Added: support for converters for main parameters (e.g. List<HostPort>).
118 Added: string converter factories
119 Added: IDefaultProvider
120 Added: PropertyFileDefaultProvider
121 Added: Usage is now showing required parameters and default value
122 Added: Support for values that look like parameters ("-integer -3", "/file /tmp/a")
123 Added: @Parameters(optionPrefixes) to allow for different prefixes than "-"
129 Added the hidden attribute
130 Added support for different separators than " " (e.g. "=").