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

com.github.azbh111.utils.java.properties.annotation.Placeholder Maven / Gradle / Ivy

The newest version!
package com.github.azbh111.utils.java.properties.annotation;

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

/**
 *
 * @author pyz
 * @date 2019/4/11 10:28 AM
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Placeholder {
    String value();

    String defaultValue() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy