public com.sun.org.apache.xpath.internal.objects.XObject | operate(com.sun.org.apache.xpath.internal.objects.XObject right)Apply the operation to two operands, and return the result.
if (XObject.CLASS_NUMBER == right.getType())
return right;
else
return new XNumber(right.num());
|