*/
private String getMappedFieldName() {
if (hasAnnotation(Id.class)) {
return Mapper.ID_KEY;
} else if (hasAnnotation(Property.class)) {
final Property mv = (Property) foundAnnotations.get(Property.class);
if (!mv.value().equals(Mapper.IGNORED_FIELDNAME)) {
return mv.value();
}
} else if (hasAnnotation(Reference.class)) {
final Reference mr = (Reference) foundAnnotations.get(Reference.class);
if (!mr.value().equals(Mapper.IGNORED_FIELDNAME)) {
return mr.value();