public com.sun.org.apache.xpath.internal.objects.XObject | operate(com.sun.org.apache.xpath.internal.objects.XObject left, com.sun.org.apache.xpath.internal.objects.XObject right)Apply the operation to two operands, and return the result.
return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|