/* The MIT License Copyright (c) 2009 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.ArrayList; import java.util.HashMap; import java.util.IdentityHashMap; import java.util.List; import java.util.Map; import static java.util.Collections.*; import static joptsimple.internal.Objects.*; /** *
Representation of a group of detected command line options, their arguments, and * non-option arguments.
* * @author Paul Holser * @version $Id: OptionSet.java,v 1.26 2009/10/25 18:37:05 pholser Exp $ */ public class OptionSet { private final MapTells whether the given option was detected.
* * @param option the option to search for * @return {@code true} if the option was detected * @see #has(OptionSpec) */ public boolean has( String option ) { return detectedOptions.containsKey( option ); } /** *Tells whether the given option was detected.
* *This method recognizes only instances of options returned from the fluent * interface methods.
* *Specifying a {@linkplain ArgumentAcceptingOptionSpec#defaultsTo(Object, Object[])} default argument value} * for an option does not cause this method to return {@code true} if the option was not detected on the command * line.
* * @param option the option to search for * @return {@code true} if the option was detected * @see #has(String) */ public boolean has( OptionSpec> option ) { return optionsToArguments.containsKey( option ); } /** *Tells whether there are any arguments associated with the given option.
* * @param option the option to search for * @return {@code true} if the option was detected and at least one argument was * detected for the option * @see #hasArgument(OptionSpec) */ public boolean hasArgument( String option ) { AbstractOptionSpec> spec = detectedOptions.get( option ); return spec != null && hasArgument( spec ); } /** *Tells whether there are any arguments associated with the given option.
* *This method recognizes only instances of options returned from the fluent * interface methods.
* *Specifying a {@linkplain ArgumentAcceptingOptionSpec#defaultsTo(Object, Object[]) default argument value} * for an option does not cause this method to return {@code true} if the option was not detected on the command * line, or if the option can take an optional argument but did not have one on the command line.
* * @param option the option to search for * @return {@code true} if the option was detected and at least one argument was * detected for the option * @throws NullPointerException if {@code option} is {@code null} * @see #hasArgument(String) */ public boolean hasArgument( OptionSpec> option ) { ensureNotNull( option ); ListGives the argument associated with the given option. If the option was given * an argument type, the argument will take on that type; otherwise, it will be a * {@link String}.
* *Specifying a {@linkplain ArgumentAcceptingOptionSpec#defaultsTo(Object, Object[]) default argument value} * for an option will cause this method to return that default value even if the option was not detected on the * command line, or if the option can take an optional argument but did not have one on the command line.
* * @param option the option to search for * @return the argument of the given option; {@code null} if no argument is * present, or that option was not detected * @throws NullPointerException if {@code option} is {@code null} * @throws OptionException if more than one argument was detected for the option */ public Object valueOf( String option ) { ensureNotNull( option ); AbstractOptionSpec> spec = detectedOptions.get( option ); if ( spec == null ) { List> defaults = defaultValuesFor( option ); return defaults.isEmpty() ? null : defaults.get( 0 ); } return valueOf( spec ); } /** *Gives the argument associated with the given option.
* *This method recognizes only instances of options returned from the fluent * interface methods.
* * @paramGives any arguments associated with the given option. If the option was given * an argument type, the arguments will take on that type; otherwise, they will be * {@link String}s.
* * @param option the option to search for * @return the arguments associated with the option, as a list of objects of the * type given to the arguments; an empty list if no such arguments are present, or if * the option was not detected * @throws NullPointerException if {@code option} is {@code null} */ public List> valuesOf( String option ) { ensureNotNull( option ); AbstractOptionSpec> spec = detectedOptions.get( option ); return spec == null ? defaultValuesFor( option ) : valuesOf( spec ); } /** *Gives any arguments associated with the given option. If the option was given * an argument type, the arguments will take on that type; otherwise, they will be * {@link String}s.
* *This method recognizes only instances of options returned from the fluent * interface methods.
* * @param