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

cn.featherfly.constant.annotation.ConstantClass Maven / Gradle / Ivy

The newest version!

package cn.featherfly.constant.annotation;

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

/**
 * 

* 配置文件覆盖式常量的配置. *

* @author 钟冀 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) public @interface ConstantClass { /** *

* 该常量类的描述. *

* @return 描述 */ String value(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy