* the member
* @return the persistent attribute type
*/
static PersistentAttributeType getPersistentAttributeType(Field member)
{
PersistentAttributeType attributeType = PersistentAttributeType.BASIC;
if (member.isAnnotationPresent(ElementCollection.class))
{
attributeType = PersistentAttributeType.ELEMENT_COLLECTION;
}
else if (member.isAnnotationPresent(OneToMany.class))