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

org.n3r.eql.eqler.annotations.Dynamic Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.n3r.eql.eqler.annotations;

import java.lang.annotation.*;

@Documented
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface Dynamic {
    /**
     * 是否只能做dynamic参数使用。
     *
     * @return 是否只能做dynamic参数使用
     */
    boolean sole() default true;

    /**
     * 用做命名dynamic参数
     *
     * @return 用做命名dynamic参数
     */
    String name() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy