io.probedock.maven.plugin.glassfish.command.argument.IArgumentName Maven / Gradle / Ivy
package io.probedock.maven.plugin.glassfish.command.argument;
/**
* Define what is a an argument name
*
* @author Laurent Prevost [email protected]
*/
public interface IArgumentName {
/**
* @return Retrieve the textual name of an argument
*/
String getArgName();
/**
* @return Retrieve if the argument is a boolean or not
*/
boolean isBoolean();
/**
* @return Retrieve an eventual default value
*/
String getDefaultValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy