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

com.crabshue.commons.args.Argument Maven / Gradle / Ivy

package com.crabshue.commons.args;

/**
 * Definition of arguments to parse in a command line.
 */
public interface Argument {

    String name();

    String getOptionName();

    String getLongOptionName();

    boolean isArgumentExpected();

    boolean isRequired();

    String getDescription();

    String getDefaultValue();

    default boolean isRepeatable() {

       return false;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy