com.datastax.insight.core.api.Arguement Maven / Gradle / Ivy
The newest version!
package com.datastax.insight.core.api;
import java.lang.annotation.*;
@Documented
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface Arguement {
String name() default "";
String description() default "";
String defaultValue() default "";
String options() default "";
}