All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.star.lang.ItemsProcessor Maven / Gradle / Ivy

The newest version!
package com.star.lang;

import java.util.Collection;

/**
 * 遍历数据的处理
 *
 * @param  输入泛型
 * @param  返回值泛型
 * @author starhq
 */
@FunctionalInterface
public interface ItemsProcessor {

    /**
     * 处理
     *
     * @param instances 需要处理的数据
     * @return 返回值
     */
    R process(Collection instances);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy