@@ -493,7 +493,7 @@ public String getArgName() {
493493 }
494494
495495 /**
496- * Returns the number of argument values this Option can take.
496+ * Gets the number of argument values this Option can take.
497497 *
498498 * <p>
499499 * A value equal to the constant {@link #UNINITIALIZED} (= -1) indicates the number of arguments has not been specified.
@@ -510,7 +510,7 @@ public int getArgs() {
510510 }
511511
512512 /**
513- * Retrieve the self-documenting description of this Option
513+ * Gets the self-documenting description of this Option
514514 *
515515 * @return The string description of this option
516516 */
@@ -519,7 +519,7 @@ public String getDescription() {
519519 }
520520
521521 /**
522- * Returns the id of this Option. This is only set when the Option shortOpt is a single character. This is used for
522+ * Gets the id of this Option. This is only set when the Option shortOpt is a single character. This is used for
523523 * switch statements.
524524 *
525525 * @return the id of this Option
@@ -529,7 +529,7 @@ public int getId() {
529529 }
530530
531531 /**
532- * Returns the 'unique' Option identifier.
532+ * Gets the 'unique' Option identifier.
533533 *
534534 * @return the 'unique' Option identifier
535535 */
@@ -539,7 +539,7 @@ String getKey() {
539539 }
540540
541541 /**
542- * Retrieve the long name of this Option.
542+ * Gets the long name of this Option.
543543 *
544544 * @return Long name of this option, or null, if there is no long name
545545 */
@@ -548,7 +548,7 @@ public String getLongOpt() {
548548 }
549549
550550 /**
551- * Retrieve the name of this Option.
551+ * Gets the name of this Option.
552552 *
553553 * It is this String which can be used with {@link CommandLine#hasOption(String opt)} and
554554 * {@link CommandLine#getOptionValue(String opt)} to check for existence and argument.
@@ -560,7 +560,7 @@ public String getOpt() {
560560 }
561561
562562 /**
563- * Retrieve the type of this Option.
563+ * Gets the type of this Option.
564564 *
565565 * @return The type of this option
566566 */
@@ -569,7 +569,7 @@ public Object getType() {
569569 }
570570
571571 /**
572- * Returns the specified value of this Option or {@code null} if there is no value.
572+ * Gets the specified value of this Option or {@code null} if there is no value.
573573 *
574574 * @return the value/first value of this Option or {@code null} if there is no value.
575575 */
@@ -578,7 +578,7 @@ public String getValue() {
578578 }
579579
580580 /**
581- * Returns the specified value of this Option or {@code null} if there is no value.
581+ * Gets the specified value of this Option or {@code null} if there is no value.
582582 *
583583 * @param index The index of the value to be returned.
584584 *
@@ -591,7 +591,7 @@ public String getValue(final int index) throws IndexOutOfBoundsException {
591591 }
592592
593593 /**
594- * Returns the value/first value of this Option or the {@code defaultValue} if there is no value.
594+ * Gets the value/first value of this Option or the {@code defaultValue} if there is no value.
595595 *
596596 * @param defaultValue The value to be returned if there is no value.
597597 *
@@ -604,7 +604,7 @@ public String getValue(final String defaultValue) {
604604 }
605605
606606 /**
607- * Return the values of this Option as a String array or null if there are no values
607+ * Gets the values of this Option as a String array or null if there are no values
608608 *
609609 * @return the values of this Option as a String array or null if there are no values
610610 */
@@ -613,7 +613,7 @@ public String[] getValues() {
613613 }
614614
615615 /**
616- * Returns the value separator character.
616+ * Gets the value separator character.
617617 *
618618 * @return the value separator character.
619619 */
@@ -622,6 +622,8 @@ public char getValueSeparator() {
622622 }
623623
624624 /**
625+ * Gets the values of this Option as a List or null if there are no values.
626+ *
625627 * @return the values of this Option as a List or null if there are no values
626628 */
627629 public List <String > getValuesList () {
0 commit comments