LabeledValue labeledValue = labeledValueBuilder.build();
if(this._possibleValuesByValue.containsKey(labeledValue.getValue()))
{
// Ignore LabeledValue, log warning and continue.
// TODO: error class should not be this one?!
_logger.warn(new DuplicateAttributeError(labeledValue.getValue()));
continue;
}
this._possibleValuesByValue.put(labeledValue.getValue(), labeledValue);
}