KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > util > collections > LiteralComparator


1 package prefuse.util.collections;
2
3 import java.util.Comparator JavaDoc;
4
5 /**
6  * @author <a HREF="http://jheer.org">jeffrey heer</a>
7  */

8 public interface LiteralComparator extends Comparator JavaDoc {
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 } // end of interface LiteralComparator
18
Popular Tags