Skip to content

Instantly share code, notes, and snippets.

@billyyarosh
Created June 5, 2012 15:10
Show Gist options
  • Save billyyarosh/2875571 to your computer and use it in GitHub Desktop.
Save billyyarosh/2875571 to your computer and use it in GitHub Desktop.
java.util.Comparator
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