Package com.linkedin.alpini.cli
Annotation Type CLIArgument
-
@Target(FIELD) @Retention(RUNTIME) public @interface CLIArgument
Annotation for a command line option with an argument, like "--file". - See Also:
CLIArgumentParser
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String
description
A short sentence description of the option.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String
argumentName
Argument name.java.lang.String
defaultValue
Default value for the option.java.lang.String
longOpt
Long name for the option.boolean
optional
Set to true if the default action is inaction.char
shortOpt
Short name for the option.
-