Example usage for org.apache.commons.cli Option subclass-usage

List of usage examples for org.apache.commons.cli Option subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.cli Option subclass-usage.

Usage

From source file nl.cyso.vcloud.client.config.ConfigParameter.java

public class ConfigParameter extends Option {
    private static final long serialVersionUID = 7833490230496409205L;

    public ConfigParameter(String opt, String description) throws IllegalArgumentException {
        super(opt, description);
    }

From source file com.github.helenusdriver.commons.cli.RunnableFirstOption.java

/**
 * The <code>RunnableFirstOption</code> class extends Apache's {#link Option} class
 * in order to provide the option to embed the running logic inside the option
 * itself when it needs to be ran first before all other options.
 *
 * @copyright 2015-2015 The Helenus Driver Project Authors

From source file com.mozilla.bagheera.cli.Option.java

/**
 * This Option class extends Apache Commons every so slightly to make required options
 * more convienent to setup.
 */
public class Option extends org.apache.commons.cli.Option {

From source file com.metamx.druid.utils.RequiredOption.java

/**
 */
public class RequiredOption extends Option {
    public RequiredOption(String opt, String description) throws IllegalArgumentException {
        super(opt, description);
        setRequired(true);

From source file com.github.helenusdriver.commons.cli.RunnableOption.java

/**
 * The <code>RunnableOption</code> class extends Apache's {#link Option} class
 * in order to provide the option to embed the running logic inside the option
 * itself.
 *
 * @copyright 2015-2015 The Helenus Driver Project Authors

From source file org.psidnell.omnifocus.cli.ActiveOption.java

/**
 * @author psidnell
 *
 * @param <P>
 *
 * Extends the option object such that simple lambda expression actions (ActiveOptionProcess) can

From source file org.apache.hadoop.fs.slive.ConfigOption.java

/**
 * Class which extends the basic option object and adds in the configuration id
 * and a default value so a central place can be used for retrieval of these as
 * needed
 */
class ConfigOption<T> extends Option {

From source file org.openmeetings.cli.OmOption.java

public class OmOption extends Option {
    private static final long serialVersionUID = -544426769898915573L;
    private String group = null;
    private Map<String, Boolean> optional = null;
    private int order = 0;
    private String helpPrefix = "";

From source file org.apache.openmeetings.cli.OmOption.java

public class OmOption extends Option {
    private static final long serialVersionUID = 1L;
    private String group = null;
    private Map<String, Boolean> optional = null;
    private int order = 0;
    private String helpPrefix = "";

From source file com.xtructure.xutil.opt.XOption.java

/**
 * XOption extends {@link Option} with a name and argument processing.
 * 
 * @author Luis Guimbarda
 * 
 * @param <T>