com.sri.ai.util.base.Null Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aic-util Show documentation
Show all versions of aic-util Show documentation
SRI International's AIC Utility Library (for Java 1.6+)
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