return fieldName;
}
private String getFieldNameByOrdinal(final Integer ordinal, final int taxonomyId) {
String result = ordinal.toString();
FudgeTaxonomy taxonomy = getTaxonomy(taxonomyId);
if (taxonomy != null) {
String fieldName = taxonomy.getFieldName(ordinal);
if (fieldName != null) {
result = fieldName;
}
}
return result;