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

me.aifaq.commons.lang.base.Function Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package me.aifaq.commons.lang.base;

/**
 * @author Wang Wei [[email protected]]
 * @since 19:40 2017/6/12
 */
public interface Function {
	T apply(S source);

	/**
	 * 入参为null值是否跳过
	 */
	boolean skipIfNull();

	/**
	 * apply返回值为null值是否跳过
	 */
	boolean skipIfApplyNull();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy