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

com.sri.ai.util.base.Null Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.sri.ai.util.base;

import com.google.common.base.Function;

/**
 * A {@link Function} that always returns null.
 * 
 * @author braz
 *
 * @param 
 *            the argument type for the function.
 * @param 
 *            the return type for the function.
 */
public class Null implements Function {

	@Override
	public R apply(A input) {
		return null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy