Blame | Last modification | View Log | RSS feed
package in.shop2020.utils;import java.util.Comparator;public class FkStockEstValueComparator implements Comparator<FkExcelRow>{@Overridepublic int compare(FkExcelRow o1, FkExcelRow o2){if (o1.getStockValue() > o2.getStockValue()) {return -1;} else if(o1.getStockValue() < o2.getStockValue()) {return 1;}return 0;}}