1 package prefuse.util.collections; 2 3 import java.util.Comparator ; 4 5 8 public interface LiteralComparator extends Comparator { 9 10 int compare(byte x1, byte x2); 11 int compare(int x1, int x2); 12 int compare(long x1, long x2); 13 int compare(float x1, float x2); 14 int compare(double x1, double x2); 15 int compare(boolean x1, boolean x2); 16 17 } | Popular Tags |