org.apache.xpath.objects
Class GreaterThanComparator

java.lang.Object
  extended by org.apache.xpath.objects.Comparator
      extended by org.apache.xpath.objects.GreaterThanComparator

 class GreaterThanComparator
extends Comparator

Compare strings or numbers for greater than.


Constructor Summary
GreaterThanComparator()
           
 
Method Summary
(package private)  boolean compareNumbers(double n1, double n2)
          Compare two numbers for greater than.
(package private)  boolean compareStrings(XMLString s1, XMLString s2)
          Compare two strings for greater than.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GreaterThanComparator

GreaterThanComparator()
Method Detail

compareStrings

boolean compareStrings(XMLString s1,
                       XMLString s2)
Compare two strings for greater than.

Specified by:
compareStrings in class Comparator
Parameters:
s1 - First string to compare
s2 - Second String to compare
Returns:
true if s1 is greater than s2

compareNumbers

boolean compareNumbers(double n1,
                       double n2)
Compare two numbers for greater than.

Specified by:
compareNumbers in class Comparator
Parameters:
n1 - First number to compare
n2 - Second number to compare
Returns:
true if n1 is greater than n2