All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.k7g.alloy.annotation.IgnoreEmptyParam Maven / Gradle / Ivy

package cn.k7g.alloy.annotation;


import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 当被标记参数为空的时候,数组和集合没有元素
 * 整个方法都不会被调用
 */
@Inherited
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface IgnoreEmptyParam {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy