devutility.internal.annotations.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
package devutility.internal.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* Order for field in Java entity class.
*
* @author: Aldwin Su
* @version: 2019-06-05 15:10:55
*/
@Retention(RUNTIME)
@Target(FIELD)
public @interface Order {
/**
* Field order value
* @return int
*/
int value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy