
net.morimekta.terminal.args.annotations.ArgNaming Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of terminal Show documentation
Show all versions of terminal Show documentation
Utilities handling specialized terminal input and output.
The newest version!
package net.morimekta.terminal.args.annotations;
import net.morimekta.terminal.args.ArgNameFormat;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Specify the argument naming rule for this class.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ArgNaming {
/**
* @return The argument name format.
*/
ArgNameFormat value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy