columnDdl = tmp;
}
}
else if (Enum.class.isAssignableFrom(field.getType()) && annName.equals(JPAAnnotationUtils.ENUMERATED))
{
EnumType type = (EnumType)annotationValues.get("value");
jdbcType = (type == EnumType.STRING ? "VARCHAR" : "INTEGER");
}
else if (JPAAnnotationUtils.isTemporalType(field.getType()) && annName.equals(JPAAnnotationUtils.TEMPORAL))
{
TemporalType type = (TemporalType)annotationValues.get("value");