short property

String? short
final

Short version, if any, that can be used for this property.

Long option will be the name of the property, the short option will be an alias of the long option.

@Parameter(short: 'n')
String name;

With the above configuration, the name property can be set on the command line by using --name John, --name=John, -n John or -n=John.

Implementation

final String? short;