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

devutility.internal.annotations.Order Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
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