Class Predicates2.Or<T,P>
- java.lang.Object
-
- org.eclipse.collections.impl.block.factory.Predicates2<T,P>
-
- org.eclipse.collections.impl.block.factory.Predicates2.Or<T,P>
-
- All Implemented Interfaces:
java.io.Serializable,java.util.function.BiPredicate<T,P>,Predicate2<T,P>
- Enclosing class:
- Predicates2<T,P>
private static final class Predicates2.Or<T,P> extends Predicates2<T,P>
-
-
Field Summary
Fields Modifier and Type Field Description private Predicate2<? super T,? super P>leftprivate Predicate2<? super T,? super P>rightprivate static longserialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description privateOr(Predicate2<? super T,? super P> one, Predicate2<? super T,? super P> two)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(T each, P injectedValue)java.lang.StringtoString()-
Methods inherited from class org.eclipse.collections.impl.block.factory.Predicates2
alwaysFalse, alwaysTrue, and, and, attributeEqual, attributeGreaterThan, attributeGreaterThanOrEqualTo, attributeIn, attributeLessThan, attributeLessThanOrEqualTo, attributeNotEqual, attributeNotIn, equal, greaterThan, greaterThanOrEqualTo, in, instanceOf, isNull, lessThan, lessThanOrEqualTo, not, notEqual, notIn, notInstanceOf, notNull, notSameAs, or, or, sameAs, throwing, throwing
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.block.predicate.Predicate2
test
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
left
private final Predicate2<? super T,? super P> left
-
right
private final Predicate2<? super T,? super P> right
-
-
Constructor Detail
-
Or
private Or(Predicate2<? super T,? super P> one, Predicate2<? super T,? super P> two)
-
-