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).
AnythingArgumentBaseDataObjectBasicIdentifiableObjectAnythingno 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? argNameSets the argument name of this Argument. |
defaultValue | shared String? defaultValueSets the default value of this Argument. |
description | shared String? descriptionSets the description of the Argument. |
shared Boolean? hiddenSets whether or not the current Argument is hidden. | |
index | shared Integer? indexSets the argument index. |
multiValued | shared Boolean? multiValuedSets whether or not the argument can receive several values. Only the last argument can receive several values. |
required | shared Boolean? requiredSets whether or not the current Argument is required. |
| Inherited Attributes |
Attributes inherited from: Objecthash, string |