Class ObjectHelper.BiObjectPredicate
- java.lang.Object
-
- io.reactivex.rxjava3.internal.functions.ObjectHelper.BiObjectPredicate
-
- All Implemented Interfaces:
BiPredicate<java.lang.Object,java.lang.Object>
- Enclosing class:
- ObjectHelper
static final class ObjectHelper.BiObjectPredicate extends java.lang.Object implements BiPredicate<java.lang.Object,java.lang.Object>
-
-
Constructor Summary
Constructors Constructor Description BiObjectPredicate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
test(java.lang.Object o1, java.lang.Object o2)
Test the given input values and return a boolean.
-
-
-
Method Detail
-
test
public boolean test(java.lang.Object o1, java.lang.Object o2)
Description copied from interface:BiPredicate
Test the given input values and return a boolean.- Specified by:
test
in interfaceBiPredicate<java.lang.Object,java.lang.Object>
- Parameters:
o1
- the first valueo2
- the second value- Returns:
- the boolean result
-
-