Java.util.function.DoublePredicate interface in Java with Examples Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report 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 value based on a condition. It is a functional interface and thus can be used in lambda expression also. public interface DoublePredicate Methods test(): This function evaluates a conditional check on the double value, and returns a boolean value denoting the outcome. boolean test(double value)and(): This function applies the AND operation on the current object and the object received as argument, and returns the newly formed predicate. This method has a default implementation. default DoublePredicate and(DoublePredicate other)negate(): This function returns the inverse of the current predicate i.e reverses the test condition. This method has a default implementation. default DoublePredicate negate()or(): This function applies the OR operation on the current object and the object received as argument, and returns the newly formed predicate. This method has a default implementation. default DoublePredicate or(DoublePredicate other) Example: Java // Java example to demonstrate DoublePredicate interface import java.util.function.DoublePredicate; public class DoublePredicateDemo { public static void main(String[] args) { // DoublePredicate to check square // of x is less than 100 DoublePredicate db = (x) -> { return x * x < 100.0; }; System.out.println("100 is less than 100 " + db.test(10)); DoublePredicate db3; // Test condition reversed db.negate(); System.out.println("100 is greater than 100 " + db.test(10)); DoublePredicate db2 = (x) -> { double y = x * x; return y >= 36 && y < 1000; }; // Test condition ANDed // with another predicate db3 = db.and(db2); System.out.println("81 is less than 100 " + db3.test(9)); db3 = db.or(db2); // Test condition ORed with another predicate System.out.println("49 is greater than 36" + " and less than 100 " + db3.test(7)); } } Output: 100 is less than 100 false 100 is greater than 100 false 81 is less than 100 true 49 is greater than 36 and less than 100 true Reference: https://docs.oracle.com/javase/8/docs/api/java/util/function/DoublePredicate.html Comment More infoAdvertise with us C CharchitKapoor Follow Improve Article Tags : Java Java - util package Java-Functional-Interfaces Practice Tags : Java Explore BasicsIntroduction to Java4 min readJava Programming Basics9 min readJava Methods7 min readAccess Modifiers in Java6 min readArrays in Java9 min readJava Strings8 min readRegular Expressions in Java7 min readOOP & InterfacesClasses and Objects in Java10 min readJava Constructors10 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface11 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java6 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling8 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial15+ min readJava Networking15+ min readJDBC Tutorial12 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples8 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions7 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like