Attributes
Members list
Type members
Classlikes
Attributes
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- trait
- Supertypes
-
trait Sumtrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
ParseResult.type
Parses a boolean based on prefix of baseName:
Parses a boolean based on prefix of baseName:
- --[dont-]run : --dont-run [false] / --run [true]
- --[do/dont]-run : --do-run [true] / --dont-run [false]
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
toggle.type
Value members
Concrete methods
Parses a boolean based on whether baseName is provided:
Parses a boolean based on whether baseName is provided:
- --base-name [ifPresent] /
no param
[!ifPresent]
Attributes
If present, returns ifPresent
, otherwise, fails.
If present, returns ifPresent
, otherwise, fails.
Attributes
Parses a single normal value, without a param.
Note that this should be used AFTER all param-based calls, because otherwise, something like:
--key KEY-VALUE VALUE
would pull out the KEY-VALUE, and then parse --key VALUE
Parses a single normal value, without a param.
Note that this should be used AFTER all param-based calls, because otherwise, something like:
--key KEY-VALUE VALUE
would pull out the KEY-VALUE, and then parse --key VALUE
Attributes
Parses all normal values, without a param.
Note that this should be used AFTER all param-based calls, because otherwise, something like:
--key KEY-VALUE VALUE
would pull out the KEY-VALUE and VALUE, and then parse --key
Parses all normal values, without a param.
Note that this should be used AFTER all param-based calls, because otherwise, something like:
--key KEY-VALUE VALUE
would pull out the KEY-VALUE and VALUE, and then parse --key