All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ovea.tajin.server.internal.cli.OptionBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.b11
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.cli;

/**
 * 

OptionBuilder allows the user to create Options using descriptive * methods.

*

Details on the Builder pattern can be found at * * http://c2.com/cgi-bin/wiki?BuilderPattern.

* * @author John Keyes (john at integralsource.com) * @since 1.0 */ public class OptionBuilder { /** long option */ private static String longopt; /** option description */ private static String description; /** argument name */ private static String argName; /** is required? */ private static boolean required; /** the number of arguments */ private static int numberOfArgs = Option.UNINITIALIZED; /** option type */ private static Object type; /** option can have an optional argument value */ private static boolean optionalArg; /** value separator for argument value */ private static char valuesep; /** option builder instance */ private static OptionBuilder instance = new OptionBuilder(); /** * private constructor to prevent instances being created */ private OptionBuilder() { // hide the constructor } /** * Resets the member variables to their default values. */ private static void reset() { description = null; argName = "arg"; longopt = null; type = null; required = false; numberOfArgs = Option.UNINITIALIZED; // PMM 9/6/02 - these were missing optionalArg = false; valuesep = (char) 0; } /** * The next Option created will have the following long option value. * * @param newLongopt the long option value * @return the OptionBuilder instance */ public static OptionBuilder withLongOpt(String newLongopt) { OptionBuilder.longopt = newLongopt; return instance; } /** * The next Option created will require an argument value. * * @return the OptionBuilder instance */ public static OptionBuilder hasArg() { OptionBuilder.numberOfArgs = 1; return instance; } /** * The next Option created will require an argument value if * hasArg is true. * * @param hasArg if true then the Option has an argument value * @return the OptionBuilder instance */ public static OptionBuilder hasArg(boolean hasArg) { OptionBuilder.numberOfArgs = (hasArg == true) ? 1 : Option.UNINITIALIZED; return instance; } /** * The next Option created will have the specified argument value * name. * * @param name the name for the argument value * @return the OptionBuilder instance */ public static OptionBuilder withArgName(String name) { OptionBuilder.argName = name; return instance; } /** * The next Option created will be required. * * @return the OptionBuilder instance */ public static OptionBuilder isRequired() { OptionBuilder.required = true; return instance; } /** * The next Option created uses sep as a means to * separate argument values. * * Example: *
     * Option opt = OptionBuilder.withValueSeparator(':')
     *                           .create('D');
     *
     * CommandLine line = parser.parse(args);
     * String propertyName = opt.getValue(0);
     * String propertyValue = opt.getValue(1);
     * 
* * @param sep The value separator to be used for the argument values. * * @return the OptionBuilder instance */ public static OptionBuilder withValueSeparator(char sep) { OptionBuilder.valuesep = sep; return instance; } /** * The next Option created uses '=' as a means to * separate argument values. * * Example: *
     * Option opt = OptionBuilder.withValueSeparator()
     *                           .create('D');
     *
     * CommandLine line = parser.parse(args);
     * String propertyName = opt.getValue(0);
     * String propertyValue = opt.getValue(1);
     * 
* * @return the OptionBuilder instance */ public static OptionBuilder withValueSeparator() { OptionBuilder.valuesep = '='; return instance; } /** * The next Option created will be required if required * is true. * * @param newRequired if true then the Option is required * @return the OptionBuilder instance */ public static OptionBuilder isRequired(boolean newRequired) { OptionBuilder.required = newRequired; return instance; } /** * The next Option created can have unlimited argument values. * * @return the OptionBuilder instance */ public static OptionBuilder hasArgs() { OptionBuilder.numberOfArgs = Option.UNLIMITED_VALUES; return instance; } /** * The next Option created can have num * argument values. * * @param num the number of args that the option can have * @return the OptionBuilder instance */ public static OptionBuilder hasArgs(int num) { OptionBuilder.numberOfArgs = num; return instance; } /** * The next Option can have an optional argument. * * @return the OptionBuilder instance */ public static OptionBuilder hasOptionalArg() { OptionBuilder.numberOfArgs = 1; OptionBuilder.optionalArg = true; return instance; } /** * The next Option can have an unlimited number of * optional arguments. * * @return the OptionBuilder instance */ public static OptionBuilder hasOptionalArgs() { OptionBuilder.numberOfArgs = Option.UNLIMITED_VALUES; OptionBuilder.optionalArg = true; return instance; } /** * The next Option can have the specified number of * optional arguments. * * @param numArgs - the maximum number of optional arguments * the next Option created can have. * @return the OptionBuilder instance */ public static OptionBuilder hasOptionalArgs(int numArgs) { OptionBuilder.numberOfArgs = numArgs; OptionBuilder.optionalArg = true; return instance; } /** * The next Option created will have a value that will be an instance * of type. * * @param newType the type of the Options argument value * @return the OptionBuilder instance */ public static OptionBuilder withType(Object newType) { OptionBuilder.type = newType; return instance; } /** * The next Option created will have the specified description * * @param newDescription a description of the Option's purpose * @return the OptionBuilder instance */ public static OptionBuilder withDescription(String newDescription) { OptionBuilder.description = newDescription; return instance; } /** * Create an Option using the current settings and with * the specified Option char. * * @param opt the character representation of the Option * @return the Option instance * @throws IllegalArgumentException if opt is not * a valid character. See Option. */ public static Option create(char opt) throws IllegalArgumentException { return create(String.valueOf(opt)); } /** * Create an Option using the current settings * * @return the Option instance * @throws IllegalArgumentException if longOpt has * not been set. */ public static Option create() throws IllegalArgumentException { if (longopt == null) { throw new IllegalArgumentException("must specify longopt"); } return create(null); } /** * Create an Option using the current settings and with * the specified Option char. * * @param opt the java.lang.String representation * of the Option * @return the Option instance * @throws IllegalArgumentException if opt is not * a valid character. See Option. */ public static Option create(String opt) throws IllegalArgumentException { // create the option Option option = new Option(opt, description); // set the option properties option.setLongOpt(longopt); option.setRequired(required); option.setOptionalArg(optionalArg); option.setArgs(numberOfArgs); option.setType(type); option.setValueSeparator(valuesep); option.setArgName(argName); // reset the OptionBuilder properties OptionBuilder.reset(); // return the Option instance return option; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy