Interface ToByteFunction<T>
- Type Parameters:
T- the object type that this function applies to
- 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 an operation to an object and produce a
byte.-
Method Summary
Modifier and TypeMethodDescriptionbyteapplyAsByte(T value) Applies this function to the given argument of typeToByteFunction.
-
Method Details
-
applyAsByte
Applies this function to the given argument of typeToByteFunction.- Parameters:
value- the argument to the function- Returns:
- the byte result
-