public interface CommandLineParser
CommandLineParser interface can parse a String array according to the
Options specified and return a CommandLine.| Modifier and Type | Method and Description |
|---|---|
CommandLine |
parse(Options options,
String[] arguments)
Parse the arguments according to the specified options.
|
CommandLine |
parse(Options options,
String[] arguments,
boolean stopAtNonOption)
Parse the arguments according to the specified options.
|
CommandLine parse(Options options, String[] arguments) throws ParseException
options - the specified Optionsarguments - the command line argumentsParseException - if there are any problems encountered while parsing the command line tokens.CommandLine parse(Options options, String[] arguments, boolean stopAtNonOption) throws ParseException
options - the specified Optionsarguments - the command line argumentsstopAtNonOption - if true an unrecognized argument stops the parsing and the remaining arguments are added
to the CommandLines args list. If false an unrecognized argument triggers a ParseException.ParseException - if there are any problems encountered while parsing the command line tokens.Copyright © 2018 JBoss by Red Hat. All rights reserved.