com.dieselpoint.norm.sqlmakers.Property Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of norm Show documentation
Show all versions of norm Show documentation
An extremely lightweight data access layer over JDBC
package com.dieselpoint.norm.sqlmakers;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import javax.persistence.Column;
import javax.persistence.EnumType;
import com.dieselpoint.norm.serialize.DbSerializable;
@SuppressWarnings("rawtypes")
public class Property {
public String name;
public Method readMethod;
public Method writeMethod;
public Field field;
public Class> dataType;
public boolean isGenerated;
public boolean isPrimaryKey;
public boolean isEnumField;
public Class enumClass;
public EnumType enumType;
public Column columnAnnotation;
public DbSerializable serializer;
}