io.github.icodegarden.nutrient.lang.annotation.NotEmpty Maven / Gradle / Ivy
The newest version!
package io.github.icodegarden.nutrient.lang.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* @author Fangfang.Xu
*
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NotEmpty {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy