com.github.azbh111.utils.java.iterable.model.ObjectSumFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.iterable.model;
import java.lang.reflect.Field;
/**
*
* @author pyz
* @date 2019/8/19 11:19 AM
*/
public interface ObjectSumFunction {
/**
*
* @param field 字段
* @param currentValue 当前的合计值
* @param item 元素
* @param appendValue 元素字段值
* @return
*/
Object sum(Field field, Object currentValue, T item, Object appendValue);
}