ru.argento.jfunction.ObjectToByte Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfunction Show documentation
Show all versions of jfunction Show documentation
Library for various functional interface manipulations
package ru.argento.jfunction;
/**
* Byte function of object argument.
*
* @param Function argument type.
*/
@FunctionalInterface
public interface ObjectToByte
{
/**
* Apply the function.
*
* @param value Original value.
* @return Result value.
*/
byte toByte(T value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy