Home | History | Annotate | Download | only in objects

Lines Matching full:obj2

531    * @param obj2 Object to compare this to
537 public boolean lessThan(XObject obj2)
546 if (obj2.getType() == XObject.CLASS_NODESET)
547 return obj2.greaterThan(this);
549 return this.num() < obj2.num();
555 * @param obj2 Object to compare this to
561 public boolean lessThanOrEqual(XObject obj2)
570 if (obj2.getType() == XObject.CLASS_NODESET)
571 return obj2.greaterThanOrEqual(this);
573 return this.num() <= obj2.num();
579 * @param obj2 Object to compare this to
585 public boolean greaterThan(XObject obj2)
594 if (obj2.getType() == XObject.CLASS_NODESET)
595 return obj2.lessThan(this);
597 return this.num() > obj2.num();
603 * @param obj2 Object to compare this to
609 public boolean greaterThanOrEqual(XObject obj2)
618 if (obj2.getType() == XObject.CLASS_NODESET)
619 return obj2.lessThanOrEqual(this);
621 return this.num() >= obj2.num();
627 * @param obj2 Object to compare this to
633 public boolean equals(XObject obj2)
639 if (obj2.getType() == XObject.CLASS_NODESET)
640 return obj2.equals(this);
644 return m_obj.equals(obj2.m_obj);
648 return obj2.m_obj == null;
655 * @param obj2 Object to compare this to
661 public boolean notEquals(XObject obj2)
668 if (obj2.getType() == XObject.CLASS_NODESET)
669 return obj2.notEquals(this);
671 return !equals(obj2);