public abstract class Predicates2<T,P> extends Object implements Predicate2<T,P>
Constructor and Description |
---|
Predicates2() |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
accept, test
and, negate, or
public Predicates2<T,P> and(Predicate2<? super T,? super P> op)
public Predicates2<T,P> or(Predicate2<? super T,? super P> op)
public static <T,P> Predicate2<T,P> throwing(ThrowingPredicate2<T,P> throwingPredicate2)
public static <T,P> Predicates2<T,P> not(Predicate2<T,P> predicate)
public static <T,P> Predicates2<T,P> or(Predicate2<? super T,? super P> left, Predicate2<? super T,? super P> right)
public static <T,P> Predicates2<T,P> and(Predicate2<? super T,? super P> left, Predicate2<? super T,? super P> right)
public static <T> Predicates2<T,Iterable<?>> attributeIn(Function<T,?> function)
public static <T> Predicates2<T,Iterable<?>> attributeNotIn(Function<T,?> function)
public static Predicates2<Object,Object> alwaysTrue()
public static Predicates2<Object,Object> alwaysFalse()
public static Predicates2<Object,Object> isNull()
public static Predicates2<Object,Object> notNull()
public static Predicates2<Object,Object> equal()
public static Predicates2<Object,Object> notEqual()
public static Predicates2<Object,Iterable<?>> in()
public static Predicates2<Object,Iterable<?>> notIn()
public static <T extends Comparable<T>> Predicates2<T,T> lessThan()
public static <T extends Comparable<T>> Predicates2<T,T> lessThanOrEqualTo()
public static <T extends Comparable<T>> Predicates2<T,T> greaterThan()
public static Predicates2<Object,Object> sameAs()
public static Predicates2<Object,Object> notSameAs()
public static Predicates2<Object,Class<?>> instanceOf()
public static Predicates2<Object,Class<?>> notInstanceOf()
public static <T extends Comparable<T>> Predicates2<T,T> greaterThanOrEqualTo()
public static <T> Predicates2<T,Object> attributeNotEqual(Function<T,?> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeLessThan(Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeLessThanOrEqualTo(Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeGreaterThan(Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeGreaterThanOrEqualTo(Function<T,P> function)
public static <T> Predicates2<T,Object> attributeEqual(Function<T,?> function)
Copyright © 2004–2016. All rights reserved.