forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
17 lines
366 B
6 years ago
|
package com.alibaba.excel.event;
|
||
|
|
||
|
/**
|
||
|
* There are multiple interceptors that execute only one of them when fired once.If you want to control which one to
|
||
|
* execute please use {@link Order}
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
**/
|
||
|
public interface NotRepeatExecutor {
|
||
|
/**
|
||
|
* To see if it's the same executor
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
String uniqueValue();
|
||
|
}
|