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

io.github.kits.annotations.Value Maven / Gradle / Ivy

The newest version!
package io.github.kits.annotations;

import java.lang.annotation.*;

/**
 * @project: kits
 * @created: with IDEA
 * @author: nzlong
 * @date: 2019 01 22 10:04 | January. Tuesday
 */
@Target({ElementType.FIELD, ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Value {

    String prop() default "application";

    String name();

    String defaultValue() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy