@FunctionalInterface public interface IntPredicate2 extends Predicate2<java.lang.Integer,java.lang.Integer>
ALWAYS_FALSE, ALWAYS_TRUE
Modifier and Type | Method and Description |
---|---|
default boolean |
test(java.lang.Integer value1,
java.lang.Integer value2)
Default implementation.
|
default boolean |
test(IntPair pair)
Test an int pair by expanding its elements.
|
boolean |
testInts(int value1,
int value2)
Test the given values.
|
after1, after2, after3, after5, after6, after7, after8, after9, alwaysFalse, alwaysTrue, and, and, apply, areIdentical, from, isEqual, negate, or, or, partial1, partial2, partialLeft, partialRight, reverseOrder, test, xor, xor
boolean testInts(int value1, int value2)
value1
- first value to testvalue2
- second value to testtrue
if the values match the predicate, false
otherwisedefault boolean test(java.lang.Integer value1, java.lang.Integer value2)
testInts(int, int)
test
in interface java.util.function.BiPredicate<java.lang.Integer,java.lang.Integer>
value1
- first valuevalue2
- second valuetrue
if the values match the predicate, false
otherwisejava.lang.NullPointerException
- if either value is null