public abstract class Predicates2<T,P> extends Object implements org.eclipse.collections.api.block.predicate.Predicate2<T,P>
| Constructor and Description |
|---|
Predicates2() |
| Modifier and Type | Method and Description |
|---|---|
static Predicates2<Object,Object> |
alwaysFalse() |
static Predicates2<Object,Object> |
alwaysTrue() |
Predicates2<T,P> |
and(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> op) |
static <T,P> Predicates2<T,P> |
and(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> left,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> right) |
static <T> Predicates2<T,Object> |
attributeEqual(org.eclipse.collections.api.block.function.Function<T,?> function) |
static <T,P extends Comparable<? super P>> |
attributeGreaterThan(org.eclipse.collections.api.block.function.Function<T,P> function) |
static <T,P extends Comparable<? super P>> |
attributeGreaterThanOrEqualTo(org.eclipse.collections.api.block.function.Function<T,P> function) |
static <T> Predicates2<T,Iterable<?>> |
attributeIn(org.eclipse.collections.api.block.function.Function<T,?> function) |
static <T,P extends Comparable<? super P>> |
attributeLessThan(org.eclipse.collections.api.block.function.Function<T,P> function) |
static <T,P extends Comparable<? super P>> |
attributeLessThanOrEqualTo(org.eclipse.collections.api.block.function.Function<T,P> function) |
static <T> Predicates2<T,Object> |
attributeNotEqual(org.eclipse.collections.api.block.function.Function<T,?> function) |
static <T> Predicates2<T,Iterable<?>> |
attributeNotIn(org.eclipse.collections.api.block.function.Function<T,?> function) |
static Predicates2<Object,Object> |
equal() |
static <T extends Comparable<T>> |
greaterThan() |
static <T extends Comparable<T>> |
greaterThanOrEqualTo() |
static Predicates2<Object,Iterable<?>> |
in() |
static Predicates2<Object,Class<?>> |
instanceOf() |
static Predicates2<Object,Object> |
isNull() |
static <T extends Comparable<T>> |
lessThan() |
static <T extends Comparable<T>> |
lessThanOrEqualTo() |
static <T,P> Predicates2<T,P> |
not(org.eclipse.collections.api.block.predicate.Predicate2<T,P> predicate) |
static Predicates2<Object,Object> |
notEqual() |
static Predicates2<Object,Iterable<?>> |
notIn() |
static Predicates2<Object,Class<?>> |
notInstanceOf() |
static Predicates2<Object,Object> |
notNull() |
static Predicates2<Object,Object> |
notSameAs() |
Predicates2<T,P> |
or(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> op) |
static <T,P> Predicates2<T,P> |
or(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> left,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> right) |
static Predicates2<Object,Object> |
sameAs() |
static <T,P> org.eclipse.collections.api.block.predicate.Predicate2<T,P> |
throwing(ThrowingPredicate2<T,P> throwingPredicate2) |
public Predicates2<T,P> and(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> op)
public Predicates2<T,P> or(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> op)
public static <T,P> org.eclipse.collections.api.block.predicate.Predicate2<T,P> throwing(ThrowingPredicate2<T,P> throwingPredicate2)
public static <T,P> Predicates2<T,P> not(org.eclipse.collections.api.block.predicate.Predicate2<T,P> predicate)
public static <T,P> Predicates2<T,P> or(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> left, org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> right)
public static <T,P> Predicates2<T,P> and(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> left, org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> right)
public static <T> Predicates2<T,Iterable<?>> attributeIn(org.eclipse.collections.api.block.function.Function<T,?> function)
public static <T> Predicates2<T,Iterable<?>> attributeNotIn(org.eclipse.collections.api.block.function.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(org.eclipse.collections.api.block.function.Function<T,?> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeLessThan(org.eclipse.collections.api.block.function.Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeLessThanOrEqualTo(org.eclipse.collections.api.block.function.Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeGreaterThan(org.eclipse.collections.api.block.function.Function<T,P> function)
public static <T,P extends Comparable<? super P>> Predicates2<T,P> attributeGreaterThanOrEqualTo(org.eclipse.collections.api.block.function.Function<T,P> function)
public static <T> Predicates2<T,Object> attributeEqual(org.eclipse.collections.api.block.function.Function<T,?> function)
Copyright © 2004–2017. All rights reserved.