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

com.github.liuanxin.api.annotation.ApiGroup Maven / Gradle / Ivy

The newest version!
package com.github.liuanxin.api.annotation;

import java.lang.annotation.*;

@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiGroup {

    /** @return module name. for example: name-comment */
    String[] value();

    /** @return more forward when smaller */
    int index() default Integer.MAX_VALUE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy