@@ -167,7 +167,7 @@ public Object getOptionObject(final String opt) {
167167 *
168168 * @param option name of the option.
169169 * @return The Properties mapped by the option, never {@code null} even if the option doesn't exists.
170- * @since 1.5
170+ * @since 1.5.0
171171 */
172172 public Properties getOptionProperties (final Option option ) {
173173 final Properties props = new Properties ();
@@ -258,7 +258,7 @@ public String getOptionValue(final char opt, final String defaultValue) {
258258 *
259259 * @param option the name of the option.
260260 * @return Value of the argument if option is set, and has an argument, otherwise null.
261- * @since 1.5
261+ * @since 1.5.0
262262 */
263263 public String getOptionValue (final Option option ) {
264264 if (option == null ) {
@@ -274,7 +274,7 @@ public String getOptionValue(final Option option) {
274274 * @param option name of the option.
275275 * @param defaultValue is the default value to be returned if the option is not specified.
276276 * @return Value of the argument if option is set, and has an argument, otherwise {@code defaultValue}.
277- * @since 1.5
277+ * @since 1.5.0
278278 */
279279 public String getOptionValue (final Option option , final String defaultValue ) {
280280 final String answer = getOptionValue (option );
@@ -317,7 +317,7 @@ public String[] getOptionValues(final char opt) {
317317 *
318318 * @param option string name of the option.
319319 * @return Values of the argument if option is set, and has an argument, otherwise null.
320- * @since 1.5
320+ * @since 1.5.0
321321 */
322322 public String [] getOptionValues (final Option option ) {
323323 final List <String > values = new ArrayList <>();
@@ -348,7 +348,7 @@ public String[] getOptionValues(final String opt) {
348348 * @return the value parsed into a particular object.
349349 * @throws ParseException if there are problems turning the option value into the desired type
350350 * @see PatternOptionBuilder
351- * @since 1.5
351+ * @since 1.5.0
352352 */
353353 public Object getParsedOptionValue (final char opt ) throws ParseException {
354354 return getParsedOptionValue (String .valueOf (opt ));
@@ -361,7 +361,7 @@ public Object getParsedOptionValue(final char opt) throws ParseException {
361361 * @return the value parsed into a particular object.
362362 * @throws ParseException if there are problems turning the option value into the desired type
363363 * @see PatternOptionBuilder
364- * @since 1.5
364+ * @since 1.5.0
365365 */
366366 public Object getParsedOptionValue (final Option option ) throws ParseException {
367367 if (option == null ) {
@@ -420,7 +420,7 @@ public boolean hasOption(final char opt) {
420420 *
421421 * @param opt the option to check.
422422 * @return true if set, false if not.
423- * @since 1.5
423+ * @since 1.5.0
424424 */
425425 public boolean hasOption (final Option opt ) {
426426 return options .contains (opt );
0 commit comments