seven.callBack.DataFilterInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ExcelReads Show documentation
Show all versions of ExcelReads Show documentation
A ExcelReads Utils By Seven
package seven.callBack;
import java.util.function.Predicate;
/**
* [Github]https://github.com/MatrixSeven
* [Bolg]https://matrixseven.github.io/
* Created by seven on 2016/10/18.
* 对要包装的数据进行过滤,对应实体Bean,如果返回false将放弃此条数据
* T为实体Bean类型
*/
@FunctionalInterface
public interface DataFilterInterface extends Predicate {
}