Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
DefaultLiteralComparator.java
package prefuse.util.collections;

/**
 * Default LiteralComparator implementation that uses the natural ordering
 * of all data types for comparing values. Object values will need to
 * implement the {@link java.lang.Comparable} interface.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public class DefaultLiteralComparator implements LiteralComparator {

    // maintain a singleton instance of this class
    private static DefaultLiteralComparator s_instance = null;
    
    /**
     * Returns an instance of this comparator.
     * @return a DefaultLiteralComparator
     */
    public static DefaultLiteralComparator getInstance() {
        if ( s_instance == null )
            s_instance = new DefaultLiteralComparator();
        return s_instance;
    }
    
    /**
     * @see prefuse.util.collections.LiteralComparator#compare(int, int)
     */
    public int compare(int x1, int x2) {
        return ( x1 < x2 ? -1 : x1 > x2 ? 1 : 0 );
    }

    /**
     * @see prefuse.util.collections.LiteralComparator#compare(long, long)
     */
    public int compare(long x1, long x2) {
        return ( x1 < x2 ? -1 : x1 > x2 ? 1 : 0 );
    }

    /**
     * @see prefuse.util.collections.LiteralComparator#compare(float, float)
     */
    public int compare(float x1, float x2) {
        return Float.compare(x1, x2);
    }

    /**
     * @see prefuse.util.collections.LiteralComparator#compare(double, double)
     */
    public int compare(double x1, double x2) {
        return Double.compare(x1, x2);
    }

    /**
     * @see prefuse.util.collections.LiteralComparator#compare(boolean, boolean)
     */
    public int compare(boolean x1, boolean x2) {
        return ( x1 ? (x2 ? 0 : 1) : (x2 ? -1 : 0) );
    }

    /**
     * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
     */
    public int compare(Object o1, Object o2) {
        if ( o1 == null ) {
            return ( o2 == null ? 0 : -1 );
        } else if ( o2 == null ) {
            return 1;
        }
        
        if ( o1 instanceof Comparable ) {
            return ((Comparable)o1).compareTo(o2);
        } else if ( o2 instanceof Comparable ) {
            return -1*((Comparable)o2).compareTo(o1);
        } else {
            throw new IllegalArgumentException("Incomparable arguments.");
        }
    }

} // end of class DefaultLiteralComparator
back to top