org.snapscript.studio.agent.cli.CommandOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-agent Show documentation
Show all versions of snap-agent Show documentation
Dynamic scripting for the JVM
package org.snapscript.studio.agent.cli;
import java.util.regex.Pattern;
public interface CommandOption {
String getCode();
String getName();
String getDescription();
Object getDefault();
Pattern getPattern();
Class getType();
}