com.wizarius.orm.database.annotations.DBPredefinedField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
The newest version!
package com.wizarius.orm.database.annotations;
import com.wizarius.orm.database.entityreader.DBSupportedTypes;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Vladyslav Shyshkin on 21.01.17.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface DBPredefinedField {
String fieldName();
DBSupportedTypes type();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy