TrailingArgsOption
case class TrailingArgsOption(name: String, required: Boolean, descr: String, converter: ValueConverter[_], validator: Any => Boolean, default: () => Option[Any], hidden: Boolean) extends CliOption
Descriptor for a trailing arg option.
Descriptor for a trailing arg option.
- Value Params
- converter
The converter for this option.
- default
If this argument is not required and not found in the argument list, use this value.
- descr
Description for this option, for help text.
- hidden
If set to true then this option will not be present in auto-generated help.
- name
Name for new definition, used for identification.
- required
Is this trailing argument required?
- validator
The function that validates the parsed value.