org.apache.xpath.objects
Class NotEqualComparator
java.lang.Object
org.apache.xpath.objects.Comparator
org.apache.xpath.objects.NotEqualComparator
- class NotEqualComparator
- extends Comparator
Compare strings or numbers for non-equality.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NotEqualComparator
NotEqualComparator()
compareStrings
boolean compareStrings(XMLString s1,
XMLString s2)
- Compare two strings for non-equality.
- Specified by:
compareStrings in class Comparator
- Parameters:
s1 - First string to compares2 - Second String to compare
- Returns:
- true if s1 is not equal to s2
compareNumbers
boolean compareNumbers(double n1,
double n2)
- Compare two numbers for non-equality.
- Specified by:
compareNumbers in class Comparator
- Parameters:
n1 - First number to comparen2 - Second number to compare
- Returns:
- true if n1 is not equal to n2