67686970717273
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Double.parseDouble(leftValue.toString()) - Double.parseDouble(rightValue.toString()); } throw new ExpressionEvalException("'-' operation can't be done."); }
66676869707172
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Float.parseFloat(leftValue.toString()) > Float.parseFloat(rightValue.toString()); } throw new ExpressionEvalException("'>=' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Double.parseDouble(leftValue.toString()) * Double.parseDouble(rightValue.toString()); } throw new ExpressionEvalException("'*' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Float.parseFloat(leftValue.toString()) > Float.parseFloat(rightValue.toString()); } throw new ExpressionEvalException("'>' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Double.parseDouble(leftValue.toString()) % Double.parseDouble(rightValue.toString()); } throw new ExpressionEvalException("'%' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Float.parseFloat(leftValue.toString()) < Float.parseFloat(rightValue.toString()); } throw new ExpressionEvalException("'<' operation can't be done."); }
78798081828384
if (rightValue instanceof StringReference) { right = ((StringReference)rightValue).value(); } return left + right; } throw new ExpressionEvalException("'+' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Float.parseFloat(leftValue.toString()) <= Float.parseFloat(rightValue.toString()); } throw new ExpressionEvalException("'<=' operation can't be done."); }
} if (leftValue instanceof Double || leftValue instanceof DoubleValue) { return Double.parseDouble(leftValue.toString()) / Double.parseDouble(rightValue.toString()); } throw new ExpressionEvalException("'/' operation can't be done."); }
14151617181920
if (leftValue instanceof BooleanValue || leftValue instanceof Boolean ){ lv = Boolean.parseBoolean(leftValue.toString()); return !lv ; } throw new ExpressionEvalException("'!' operation can't be done."); }