io.virtdata.libbasics.shared.from_long.to_int.FixedValue 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_int;
import io.virtdata.annotations.Example;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongToIntFunction;
/**
* Yield a fixed value.
*/
@ThreadSafeMapper
public class FixedValue implements LongToIntFunction {
private final int fixedValue;
@Example({"FixedValue(42)","always return 42"})
public FixedValue(int value) {
this.fixedValue = value;
}
@Override
public int applyAsInt(long value) {
return fixedValue;
}
}