DO NOT USE. Hacked version until Commons CLI 1.3 is released. NOTE: this is a mirror copy of org.apache.commons.cli.GroovyInternalPosixParser DON'T MAKE CHANGES without keeping the other file in sync! The class GroovyPosixParser provides an implementation of the flatten method.
Type Params | Return Type | Name and description |
---|---|---|
|
protected void |
burstToken(String token, boolean stopAtNonOption) Breaks token into its constituent parts
using the following algorithm. |
|
protected String[] |
flatten(Options options, String[] arguments, boolean stopAtNonOption) An implementation of Parser's abstract flatten method. |
Breaks token
into its constituent parts
using the following algorithm.
stopAtNonOption
IS set then add the special token
"--" followed by the remaining characters and also
the remaining tokens directly to the processed tokens list.stopAtNonOption
IS NOT set then add that
character prepended with "-".token
- The current token to be burststopAtNonOption
- Specifies whether to stop processing
at the first non-Option encountered.An implementation of Parser's abstract flatten method.
The following are the rules used by this flatten method.
stopAtNonOption
is true then do not
burst anymore of arguments
entries, just add each
successive entry without further processing. Otherwise, ignore
stopAtNonOption
.arguments
entry is "--"
just add the entry to the list of processed tokensarguments
entry is "-"
just add the entry to the list of processed tokensarguments
entry is two characters
in length and the first character is "-" then check if this
is a valid Option id. If it is a valid id, then add the
entry to the list of processed tokens and set the current Option
member. If it is not a valid id and stopAtNonOption
is true, then the remaining entries are copied to the list of
processed tokens. Otherwise, the current entry is ignored.arguments
entry is more than two
characters in length and the first character is "-" then
we need to burst the entry to determine its constituents. For more
information on the bursting algorithm see
burstToken.arguments
entry is not handled
by any of the previous rules, then the entry is added to the list
of processed tokens.options
- The command line Optionsarguments
- The command line arguments to be parsedstopAtNonOption
- Specifies whether to stop flattening when an non option is found.arguments
String array.