Defines a command line argument. Unlike options, argument don't have names and are identified using an index. The first index is 0 (because we are in the computer world).
Anything
Argument
BaseDataObject
Basic
Identifiable
Object
Anything
no subtypes hierarchy
Initializer |
Argument(String? argName = null, String? defaultValue = null, String? description = null, Boolean? hidden = null, Integer? index = null, Boolean? multiValued = null, Boolean? required = null) Parameters:
|
Attributes | |
argName | shared String? argName Sets the argument name of this Argument. |
defaultValue | shared String? defaultValue Sets the default value of this Argument. |
description | shared String? description Sets the description of the Argument. |
shared Boolean? hidden Sets whether or not the current Argument is hidden. | |
index | shared Integer? index Sets the argument index. |
multiValued | shared Boolean? multiValued Sets whether or not the argument can receive several values. Only the last argument can receive several values. |
required | shared Boolean? required Sets whether or not the current Argument is required. |
Inherited Attributes |
Attributes inherited from: Object hash , string |