data class Option : ParameterHelp
names
- The names that can be used to invoke this option
secondaryNames
- Secondary names that can be used to e.g. disable the option
metavar
- The metavar to display for the option if it takes values
help
- The option's description
nvalues
- The number of values that this option takes
Option(names: Set<String>, secondaryNames: Set<String>, metavar: String?, help: String, nvalues: Int) |
val help: String
The option's description |
|
val metavar: String?
The metavar to display for the option if it takes values |
|
val names: Set<String>
The names that can be used to invoke this option |
|
val nvalues: Int
The number of values that this option takes |
|
val secondaryNames: Set<String>
Secondary names that can be used to e.g. disable the option |