Interface ByteLongToObjectFunction<T>
-
- All Superinterfaces:
java.io.Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ByteLongToObjectFunction<T> extends java.io.Serializable
A ByteLongToObjectFunction is a two argument lambda or closure which takes a primitive byte as the first and a primitive long as the second argument and returns an Object as the result. This file was automatically generated from template file primitivePrimitiveToObjectFunction.stg.- Since:
- 9.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
value(byte argument1, long argument2)
-
-
-
Method Detail
-
value
T value(byte argument1, long argument2)
-
-