ph.com.nightowlstudios.entity.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edge Show documentation
Show all versions of edge Show documentation
A simple library for building REST API using Vertx.
package ph.com.nightowlstudios.entity;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines the column name of a certain {@link ph.com.nightowlstudios.entity.Table}
*
* @author Joseph Harvey Angeles - @yev
* @see ph.com.nightowlstudios.entity.Table
* @since 7/3/20
**/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Column {
String value();
}