Java.util.function.IntPredicate interface in Java with Examples
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 value based on a condition. It is a functional interface and thus can be used in lambda expression also.
public interface IntPredicate
Methods
-
test(): This function evaluates a conditional check on the int value, and returns a boolean value denoting the outcome.
boolean test(int value)
-
and(): This function applies the AND operation on the current object and the object recieved as argument, and returns the newly formed predicate. This method has a default implementation.
default IntPredicate and(IntPredicate other)
-
negate(): This function returns the inverse of the current predicate i.e reverses the test condition. This method has a default implementation.
default IntPredicate negate()
-
or(): This function applies the OR operation on the current object and the object recieved as argument, and returns the newly formed predicate. This method has a default implementation.
default IntPredicate or(IntPredicate other)
Example:
// Java example to demonstrate IntPredicate interface import java.util.function.IntPredicate; public class IntPredicateDemo { public static void main(String[] args) { // Predicate to check a value is less than 544331 IntPredicate intPredicate = (x) -> { if (x <= 544331) return true; return false; }; System.out.println("544331 is less than 544331 " + intPredicate.test(544331)); // Predicate to check a value is equal to 544331 IntPredicate predicate = (x) -> { if (x == 544331) return true; return false; }; System.out.println("544331 is equal to 544331 " + predicate.test(544331)); // ORing the two predicates IntPredicate intPredicate1 = intPredicate.or(predicate); System.out.println("544331 is less than equal to 544331 " + intPredicate1.test(544331)); // ANDing the two predicates intPredicate1 = intPredicate.and(predicate); System.out.println("544331 is equal to 544331 " + intPredicate1.test(544331)); // Negating the predicate intPredicate1 = intPredicate.negate(); System.out.println("544331 is greater than 544331 " + intPredicate1.test(544331)); } } |
chevron_right
filter_none
Output:
544331 is less than 544331 true 544331 is equal to 544331 true 544331 is less than equal to 544331 true 544331 is equal to 544331 true 544331 is greater than 544331 false
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/function/IntPredicate.html
Recommended Posts:
- Java.util.function.BiPredicate interface in Java with Examples
- Java.util.function.LongPredicate interface in Java with Examples
- Java.util.function.DoublePredicate interface in Java with Examples
- ToDoubleBiFunction Interface in Java with Examples
- ToIntBiFunction Interface in Java with Examples
- LongFunction Interface in Java with Examples
- Java 8 | IntSupplier Interface with Examples
- Java 8 | LongSupplier Interface with Examples
- ToDoubleFunction Interface in Java with Examples
- IntFunction Interface in Java with Examples
- ToLongBiFunction Interface in Java with Examples
- Supplier Interface in Java with Examples
- SortedMap Interface in Java with Examples
- List Interface in Java with Examples
- LongToDoubleFunction Interface in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



