Skip to content

Tag Archives: Java-Functional-Interfaces

The LongBinaryOperator interface was introduced in Java 8. It represents an operation on two long values and returns the result as a long value. It… Read More
The DoublePredicate interface was introduced in JDK 8. This interface is packaged in java.util.function package. It operates on a Double object and returns a predicate… Read More
The DoubleBinaryOperator interface was introduced in Java 8. It represents an operation on two double values and returns the result as a double value. It… Read More
The BiPredicate<T, V> interface was introduced in JDK 8. This interface is packaged in java.util.function package. It operates on two objects and returns a predicate… Read More
The LongPredicate interface was introduced in JDK 8. This interface is packaged in java.util.function package. It operates on a long value and returns a predicate… Read More
The IntPredicate interface was introduced in JDK 8. This interface is packaged in java.util.function package. It operates on an integer value and returns a predicate… Read More
The IntBinaryOperator interface was introduced in Java 8. It represents an operation on two int values and returns the result as an int value. It… Read More