454455456457458459460
*/ private Property evalModulo(Number op1, Number op2) throws PropertyException { if (op1 == null || op2 == null) throw new PropertyException("Non number operand to modulo"); return new NumberProperty(op1.doubleValue()%op2.doubleValue()); }