com.neko233.toolchain.validator.annotation.NotNull Maven / Gradle / Ivy
package com.neko233.toolchain.validator.annotation;
import java.lang.annotation.*;
@Documented
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface NotNull {
String tips() default "";
}