Lines Matching defs:equal
200 * Returns whether this IntegerValue and the given IntegerValue are equal:
203 public abstract int equal(IntegerValue other);
212 * Returns whether this IntegerValue is less than or equal to the given
227 return -equal(other);
240 * Returns whether this IntegerValue is greater than or equal to the given IntegerValue:
433 * equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
435 public int equal(UnknownIntegerValue other)
437 return equal((IntegerValue)other);
451 * Returns whether this IntegerValue is less than or equal to the given
469 return -equal(other);
483 * Returns whether this IntegerValue is greater than or equal to the given
677 * equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
679 public int equal(SpecificIntegerValue other)
681 return equal((IntegerValue)other);
695 * Returns whether this IntegerValue is less than or equal to the given
713 return -equal(other);
727 * Returns whether this IntegerValue is greater than or equal to the given
921 * equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
923 public int equal(ParticularIntegerValue other)
925 return equal((SpecificIntegerValue)other);
939 * Returns whether this IntegerValue is less than or equal to the given
957 return -equal(other);
971 * Returns whether this IntegerValue is greater than or equal to the given