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

ph.com.nightowlstudios.entity.Table 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;

/**
 * Table name of an {@link ph.com.nightowlstudios.entity.Entity}. Used by {@code PersistenceClient}
 *
 * @author Joseph Harvey Angeles - @yev
 * @see ph.com.nightowlstudios.entity.Entity
 * @see ph.com.nightowlstudios.persistence.PersistenceClient
 * @since 7/3/20
 **/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
  String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy