463464465466467468469
private ExprUnaryOper evalNegate(final ExprUnary op) throws PropertyException { if (op == null) { throw new PropertyException("Negation: missing parameter."); } return new ExprUnaryOper(op, Expr.OPERATION_NEGATION); }