public static class CommandLine.ParseResult.GroupMatchContainer extends Object
CommandLine.ArgGroup
that was matched on the command line.
The ParseResult
may have more than one GroupMatchContainer
for an ArgGroupSpec
, when the
group was matched more often than its maximum multiplicity.
This is not necessarily a problem: the parser will add a match to the parent matched group
until the maximum multiplicity of the parent group is exceeded, in which case parser will add a match to the parent's parent group, etc.
Ultimately, as long as the CommandLine.ParseResult.getGroupMatches()
method does not return more than one match, the maximum number of elements is not exceeded.
Modifier and Type | Method and Description |
---|---|
CommandLine.Model.ArgGroupSpec |
group()
Returns the
ArgGroupSpec whose matches are captured in this GroupMatchContainer . |
List<CommandLine.ParseResult.GroupMatch> |
matches()
Returns the list of
GroupMatch instances: ArgGroupSpec s with a multiplicity greater than one may be matched multiple times. |
String |
toString() |
public CommandLine.Model.ArgGroupSpec group()
ArgGroupSpec
whose matches are captured in this GroupMatchContainer
.public List<CommandLine.ParseResult.GroupMatch> matches()
GroupMatch
instances: ArgGroupSpec
s with a multiplicity greater than one may be matched multiple times.