Created
June 5, 2012 15:10
-
-
Save billyyarosh/2875571 to your computer and use it in GitHub Desktop.
java.util.Comparator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package java.util; | |
public interface Comparator<T> { | |
public int compare(T t, T t1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment