Package io.vertx.core.cli.annotations
Annotation Type ParsedAsList
-
@Target(METHOD) @Retention(RUNTIME) public @interface ParsedAsList
Annotates a setter to be called with the value of a command line option. The setter must also have been annotated withOption
. When annotated withParsedAsList
, the option value is parsed as a list. The value is split and then each segment is trimmed.- Author:
- Clement Escoffier
- See Also:
Option
-
-
Element Detail
-
separator
String separator
The separator used to split the value.,
is used by default.- Default:
- ","
-
-