com.alibaba.excel.event.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyexcel Show documentation
Show all versions of easyexcel Show documentation
easyexcel is a excel handle tools written in Java
package com.alibaba.excel.event;
/**
* Implement this interface when sorting
*
* @author Jiaju Zhuang
*/
public interface Order {
/**
* The smaller the first implementation
*
* @return
*/
int order();
}