The infrastructure contain enumdef like this:
IMB_VA_IND 4342
! VALUE DISPLAY MEANING
! ----- ------- -------
0 " " Not Set
1 "1 " 1 to 1.99%
2 "2 " 2 to 2.99%
3 "3 " 3 to 3.99%
In my java code, the following will only return "1", for 1, "2" for 2. I don't see a method that will return the MEANING column, i.e., "1 to 1.99%", "2 to 2.99%":
if (IMB_VA_IND.equals(fieldName))
{
if (fieldData.getType() == OMMTypes.ENUM)
{
priceVariation = dictionary.expandedValueFor(fe.getFieldId(), ((OMMEnum)fieldData).getValue());
num_fields_found++;
}
}