@Override
public void processBindingConfiguration(String context, Item item,
String bindingConfig) throws BindingConfigParseException {
super.processBindingConfiguration(context, item, bindingConfig);
MeasureType measureType = MeasureType.valueOf(bindingConfig
.toUpperCase());
if (measureType == null) {
throw new BindingConfigParseException("Could not convert string '"
+ bindingConfig + "' to according measure type.");