public final TypeValuePair evaluate(final FormulaContext context,
final TypeValuePair value1,
final TypeValuePair value2)
throws EvaluationException
{
final TypeRegistry typeRegistry = context.getTypeRegistry();
final Type type1 = value1.getType();
final Type type2 = value2.getType();
final Object value1Raw = value1.getValue();
final Object value2Raw = value2.getValue();
if (value1Raw == null || value2Raw == null)
{
throw new EvaluationException(LibFormulaErrorValue.ERROR_NA_VALUE);
}
final ExtendedComparator comparator = typeRegistry.getComparator(type1, type2);
final Integer result = comparator.compare (type1, value1Raw, type2, value2Raw);
if (result == null)
{
throw new EvaluationException
(LibFormulaErrorValue.ERROR_INVALID_ARGUMENT_VALUE);