Method | Description | |
---|---|---|
FastFindArgumentParser ( ) : System |
Initializes a new instance of the FastFindArgumentParser class.
|
|
OnUsage ( String errorInfo ) : void |
Reports correct command line usage.
|
Method | Description | |
---|---|---|
OnDoneParse ( ) : SwitchStatus |
Called when parsing is finished so final sanity checking can be performed.
|
|
OnNonSwitch ( String value ) : SwitchStatus |
Called when a non-switch value is parsed out.
|
|
OnSwitch ( String switchSymbol, String switchValue ) : SwitchStatus |
Called when a switch is parsed out.
|
Method | Description | |
---|---|---|
TestPath ( String pathToTest ) : SwitchStatus |
Isolates the checking for the path parameter.
|
protected OnNonSwitch ( String value ) : SwitchStatus | ||
value | String | /// The value parsed out. /// |
return | SwitchStatus |
protected OnSwitch ( String switchSymbol, String switchValue ) : SwitchStatus | ||
switchSymbol | String | /// The switch value parsed out. /// |
switchValue | String | /// The value of the switch. For flag switches this is null/Nothing. /// |
return | SwitchStatus |
public OnUsage ( String errorInfo ) : void | ||
errorInfo | String | /// The string with the invalid command line option. /// |
return | void |