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

com.smallaswater.easysql.mysql.utils.apiinfo.ApiInfo Maven / Gradle / Ivy

There is a newer version: 3.0.7
Show newest version
package com.smallaswater.easysql.mysql.utils.apiinfo;

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

/**
 * @author LT_Name
 */
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.FIELD,
        ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PACKAGE,
        ElementType.LOCAL_VARIABLE, ElementType.TYPE_PARAMETER, ElementType.TYPE_USE,
        ElementType.PARAMETER})
public @interface ApiInfo {

    String value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy