Home | History | Annotate | Download | only in objects

Lines Matching refs:obj2

465    * @param obj2 Object to compare this nodeset to
472 public boolean compare(XObject obj2, Comparator comparator)
477 int type = obj2.getType();
495 DTMIterator list2 = ((XNodeSet) obj2).iterRaw();
552 double num2 = obj2.num();
567 double num2 = obj2.num();
585 XMLString s2 = obj2.xstr();
611 XMLString s2 = obj2.xstr();
629 result = comparator.compareNumbers(this.num(), obj2.num());
638 * @param obj2 object to compare this nodeset to
644 public boolean lessThan(XObject obj2) throws javax.xml.transform.TransformerException
646 return compare(obj2, S_LT);
652 * @param obj2 object to compare this nodeset to
658 public boolean lessThanOrEqual(XObject obj2) throws javax.xml.transform.TransformerException
660 return compare(obj2, S_LTE);
666 * @param obj2 object to compare this nodeset to
672 public boolean greaterThan(XObject obj2) throws javax.xml.transform.TransformerException
674 return compare(obj2, S_GT);
680 * @param obj2 object to compare this nodeset to
686 public boolean greaterThanOrEqual(XObject obj2)
689 return compare(obj2, S_GTE);
695 * @param obj2 object to compare this nodeset to
701 public boolean equals(XObject obj2)
705 return compare(obj2, S_EQ);
716 * @param obj2 object to compare this nodeset to
722 public boolean notEquals(XObject obj2) throws javax.xml.transform.TransformerException
724 return compare(obj2, S_NEQ);