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

ph.com.nightowlstudios.entity.Column Maven / Gradle / Ivy

There is a newer version: 6.21.1
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy