![JAR search and dependency download from the Maven repository](/logo.png)
com.linkedin.dagli.util.function.LongDefaultOnNullArgument3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of util-function Show documentation
Show all versions of util-function Show documentation
DAG-oriented machine learning framework for bug-resistant, readable, efficient, maintainable and trivially deployable models in Java and other JVM languages
// AUTOGENERATED CODE. DO NOT MODIFY DIRECTLY! Instead, please modify the util/function/DefaultOnNullArgument.ftl file.
// See the README in the module's src/template directory for details.
package com.linkedin.dagli.util.function;
import java.util.Objects;
/**
* A function class implementing LongFunction3.Serializable that returns 0 if any of
* the function's inputs are null.
*/
class LongDefaultOnNullArgument3 implements LongFunction3.Serializable {
private static final long serialVersionUID = 1;
private static final int CLASS_HASH = LongDefaultOnNullArgument3.class.hashCode();
private final LongFunction3 _wrapped;
LongDefaultOnNullArgument3(LongFunction3 wrapped) {
// stacking this wrapper multiple times should be idempotent:
if (wrapped instanceof LongDefaultOnNullArgument3) {
_wrapped = ((LongDefaultOnNullArgument3) wrapped)._wrapped;
} else {
_wrapped = Objects.requireNonNull(wrapped);
}
}
@Override
public LongDefaultOnNullArgument3 safelySerializable() {
return new LongDefaultOnNullArgument3<>(((LongFunction3.Serializable) _wrapped).safelySerializable());
}
@Override
public long apply(A value1, B value2, C value3) {
if (value1 == null || value2 == null || value3 == null) {
return 0;
}
return _wrapped.apply(value1, value2, value3);
}
@Override
public int hashCode() {
return CLASS_HASH + _wrapped.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof LongDefaultOnNullArgument3) {
return this._wrapped.equals(((LongDefaultOnNullArgument3) obj)._wrapped);
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy