io.github.kits.annotations.Value Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimthen-kits Show documentation
Show all versions of whimthen-kits Show documentation
Easy to use java tool library.
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 "";
}