io.virtdata.libbasics.shared.from_long.to_byte.LongToByte 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_byte;
import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.DeprecatedFunction;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongFunction;
/**
* Convert the input long value to a byte, with negative values
* masked away.
*/
@ThreadSafeMapper
@Categories({Category.conversion})
@DeprecatedFunction("This function is being replaced by ToByte() for naming consistency.")
public class LongToByte implements LongFunction {
@Override
public Byte apply(long value) {
return (byte) (value & Byte.MAX_VALUE);
}
}