package prefuse.util.collections; import java.util.Comparator; /** * @author jeffrey heer */ 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