Rev 8439 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.amazonaws.mws.samples;import java.util.Comparator;public class NotMovingComparator implements Comparator<ExcelRow> {@Overridepublic int compare(ExcelRow o1, ExcelRow o2) {if (o1.getCURRENT_STOCK_FBA() > o1.getCURRENT_STOCK_FBA()) {return -1;} else if (o1.getCURRENT_STOCK_FBA() < o1.getCURRENT_STOCK_FBA()) {return 1;}return 0;}}