Get the value
Get the value
This calls Option.get on the underlying value so an exception will be thrown if the value is not set.
The default value for this options
The default value for this options
The description of this option which is used as part of the help message
The description of this option which is used as part of the help message
A list of boolean option that this option disables
A list of boolean option that this option disables
A List of boolean options that this option enables
A List of boolean options that this option enables
Whether or not this command line options is exclusive and cannot be used with any other options (e.
Whether or not this command line options is exclusive and cannot be used with any other options (e.g. a help options that prints the help message and then quits)
Other command line options that this option is invalid with
Other command line options that this option is invalid with
The long form of this option (if any)
The long form of this option (if any)
(e.g. "myoption" would be called with "--myoption" on the command line)
Specifies how to parse the string from the command line argument into a value of type T
Reset the value to the default
The short form of this option (if any)
The short form of this option (if any)
(e.g. "a" would be called with "-a" on the command line)
Other command line options that are required when this option is set
Other command line options that are required when this option is set
Validate the parsed value using the validate argument passed in on the constructor
Validate the parsed value using the validate argument passed in on the constructor
The value attached to this command line option (wrapped in an Option)
The value attached to this command line option (wrapped in an Option)
FileOpt has the same usage as com.frugalmechanic.optparse.StrOpt except it returns a java.io.File instead of a String