joptsimple.OptionSpecBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-joptsimple Show documentation
Show all versions of gemfire-joptsimple Show documentation
SnappyData store based off Pivotal GemFireXD
/*
The MIT License
Copyright (c) 2004-2011 Paul R. Holser, Jr.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package joptsimple;
import java.util.Collection;
/**
* Allows callers to specify whether a given option accepts arguments (required or optional).
*
* Instances are returned from {@link OptionParser#accepts(String)} to allow the formation of parser directives as
* sentences in a "fluent interface" language. For example:
*
*
* OptionParser parser = new OptionParser();
* parser.accepts( "c" ).withRequiredArg().ofType( Integer.class );
*
*
* If no methods are invoked on an instance of this class, then that instance's option will accept no argument.
*
* Note that you should not use the fluent interface clauses in a way that would defeat the typing of option
* arguments:
*
*
* OptionParser parser = new OptionParser();
* ArgumentAcceptingOptionSpec<String> optionC =
* parser.accepts( "c" ).withRequiredArg();
* optionC.ofType( Integer.class ); // DON'T THROW AWAY THE TYPE!
*
* String value = parser.parse( "-c", "2" ).valueOf( optionC ); // ClassCastException
*
*
* @author Paul Holser
*/
public class OptionSpecBuilder extends NoArgumentOptionSpec {
private final OptionParser parser;
OptionSpecBuilder( OptionParser parser, Collection options, String description ) {
super( options, description );
this.parser = parser;
attachToParser();
}
private void attachToParser() {
parser.recognize( this );
}
/**
* Informs an option parser that this builder's option requires an argument.
*
* @return a specification for the option
*/
public ArgumentAcceptingOptionSpec withRequiredArg() {
ArgumentAcceptingOptionSpec newSpec =
new RequiredArgumentOptionSpec( options(), description() );
parser.recognize( newSpec );
return newSpec;
}
/**
* Informs an option parser that this builder's option accepts an optional argument.
*
* @return a specification for the option
*/
public ArgumentAcceptingOptionSpec withOptionalArg() {
ArgumentAcceptingOptionSpec newSpec =
new OptionalArgumentOptionSpec( options(), description() );
parser.recognize( newSpec );
return newSpec;
}
}