Skip to content

Instantly share code, notes, and snippets.

@thejavalistener
Created February 28, 2014 16:47
Show Gist options
  • Save thejavalistener/9274553 to your computer and use it in GitHub Desktop.
Save thejavalistener/9274553 to your computer and use it in GitHub Desktop.
public class BeanComparator<T> implements Comparator<T>
{
private static final int KEY=0;
private static final int SIGN=1;
private String[][] keys = null;
public BeanComparator(String pkline)
{
// explorar la cedana y la separa en pares (signo,key)
keys = UIndex.getKeys(pkline);
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment