
com.crabshue.commons.args.Argument Maven / Gradle / Ivy
package com.crabshue.commons.args;
/**
* Definition of arguments to parse in a command line.
*
* @author vinh
*/
public interface Argument {
String name();
String getOptionName();
String getLongOptionName();
boolean isArgumentExpected();
boolean isRequired();
String getDescription();
String getDefaultValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy