Java.util.function.LongPredicate interface in Java with Examples Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report 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 value based on a condition. It is a functional interface and thus can be used in lambda expression also. public interface LongPredicate Methods test(): This function evaluates a conditional check on the long value, and returns a boolean value denoting the outcome. boolean test(long 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 LongPredicate and(LongPredicate other)negate(): This function returns the inverse of the current predicate i.e reverses the test condition. This method has a default implementation. default LongPredicate 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 LongPredicate or(LongPredicate other) Example: Java // Java example to demonstrate LongPredicate interface import java.util.function.LongPredicate; public class LongPredicateDemo { public static void main(String[] args) { // Predicate to check for equal to 500000 LongPredicate longPredicate = (x) -> { return (x == 500000); }; System.out.println("499999 is equal to 500000 " + longPredicate.test(499999)); // Predicate to check for less than equal to 500000 LongPredicate longPredicate1 = (x) -> { return (x <= 500000); }; System.out.println("499999 is less than equal to 500000 " + longPredicate1.test(499999)); // ANDing the two predicates LongPredicate longPredicate2 = longPredicate.and(longPredicate1); System.out.println("500000 is equal to 500000 " + longPredicate2.test(500000)); // ORing the two predicates longPredicate2 = longPredicate.or(longPredicate1); System.out.println("500001 is less than equal to 500000 " + longPredicate2.test(500001)); // Negating the predicate longPredicate2 = longPredicate1.negate(); System.out.println("499999 is greater than 500000 " + longPredicate2.test(499999)); } } Output: 499999 is equal to 500000 false 499999 is less than equal to 500000 true 500000 is equal to 500000 true 500001 is less than equal to 500000 false 499999 is greater than 500000 false Reference: https://docs.oracle.com/javase/8/docs/api/java/util/function/LongPredicate.html Comment More info C CharchitKapoor Follow Improve Article Tags : Java Java - util package Java-Functional-Interfaces Explore Java 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 readAccess Modifiers in Java6 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 Tutorial7 min readJava Networking15+ min readJDBC Tutorial5 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 Solutions5 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like