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

import java.util.Comparator;

/**
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface LiteralComparator extends Comparator {

    int compare(int x1, int x2);
    int compare(long x1, long x2);
    int compare(float x1, float x2);
    int compare(double x1, double x2);
    int compare(boolean x1, boolean x2);
    
} // end of interface LiteralComparator
back to top