* provided ordinal value according to the specified {@link #mapping}.
* @param v the ordinal value to be transformed
* @return {@link TargetValue} transformed value.
*/
public TargetValue transform(IOrdinalValue v) {
TargetValue t = new TargetValue();
TargetValueObject o = mapping.get(v.getValue());
t.setValue(o.getValue());
return t;
}