io.virtdata.libbasics.shared.from_long.to_other.NullIfLt 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_long.to_other;
import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongFunction;
/**
* Yields a null if the input value is equal to the specified value.
*/
@ThreadSafeMapper
@Categories(Category.nulls)
public class
NullIfLt implements LongFunction {
private final long compareto;
public NullIfLt(long compareto) {
this.compareto = compareto;
}
@Override
public Long apply(long value) {
if (value < compareto) return null;
return value;
}
}