Parses arguments and return the parsed and post-processed Options.
(String... args)
| 323 | * Parses arguments and return the parsed and post-processed Options. |
| 324 | */ |
| 325 | public static Options parse(String... args) { |
| 326 | Options options = CommandLine.populateCommand(new Options(), args); |
| 327 | return postProcess(options); |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Validates input options and do some post-process on it. |