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

io.virtdata.libbasics.shared.from_long.to_other.NullIfGe Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
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 greater tha
 * or equal to the specified value.
 */
@ThreadSafeMapper
@Categories(Category.nulls)
public class NullIfGe implements LongFunction {

    private final long compareto;

    public NullIfGe(long compareto) {
        this.compareto = compareto;
    }

    @Override
    public Long apply(long value) {
        if (value >= compareto) return null;
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy