io.virtdata.libbasics.shared.from_double.to_other.NullIfGe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.libbasics.shared.from_double.to_other;
import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.DoubleFunction;
@ThreadSafeMapper
@Categories(Category.nulls)
public class NullIfGe implements DoubleFunction {
private final double compareto;
public NullIfGe(double compareto) {
this.compareto = compareto;
}
@Override
public Double apply(double value) {
if (value >= this.compareto) return null;
return value;
}
}