Specification of a command line's non-option arguments.
Instances are returned from {@link OptionParser} methods to allow the formation of parser directives assentences in a "fluent interface" language. For example:
OptionParser parser = new OptionParser(); parser.nonOptions( "files to be processed" ).ofType( File.class );
If no methods are invoked on an instance of this class, then that instance's option will treat the non-option arguments as {@link String}s.
@param < V> represents the type of the non-option arguments @author Paul Holser
|
|