Order.java 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.taover.easyexcel.event; /** * Implement this interface when sorting * * @author Jiaju Zhuang */ public interface Order { /** * The smaller the first implementation * * @return */ int order(); }