| Validates whether opt is a permissable Option
shortOpt. The rules that specify if the opt
is valid are:
opt is not NULL
- a single character
opt that is either
' '(special case), '?', '@' or a letter
- a multi character
opt that only contains
letters.
Parameters: opt - The option string to validate throws: IllegalArgumentException - if the Option is not valid. |