for (String fieldName : data.keySet()) {
if (fieldName.equals(AdaptrexEntityType.ENTITY_ID_NAME)) continue;
Object newValue = data.get(fieldName);
AdaptrexFieldType adaptrexField = adaptrexEntity.getField(fieldName);
if (adaptrexField != null) {
adaptrexField.setValueFor(entity, ExtTypeFormatter.parse(newValue, adaptrexField.getFieldType()));
continue;
}
JPAAssociationType adaptrexAssociation = (JPAAssociationType) adaptrexEntity.getAssociationByIdField(fieldName);
if (adaptrexAssociation != null) {