Interface ByteToIntFunction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to apply a function to a single
byte input and produce a single int result.-
Method Summary
-
Method Details
-
applyAsInt
int applyAsInt(byte value) Apply this function tovalue.- Parameters:
value- Thebyteinput- Returns:
- The
intresult
-