import java.util.Comparator; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author rriggs */ public interface ChronoLocalDate1 extends Comparable { public static final Comparator DATE_COMPARATOR1 = new Comparator(){ @Override public int compare(Object date1, Object date2) { return 0; } }; /** * Netbeans suggested turning the comparator above into this. */ public static final Comparator DATE_COMPARATOR3 = ( date1, date2) -> 0; }