Uses of Class
org.eclipse.collections.impl.block.factory.Predicates2
| Package | Description |
|---|---|
| org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure. |
-
Uses of Predicates2 in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return Predicates2 Modifier and Type Method Description static Predicates2<Object,Object>Predicates2. alwaysFalse()static Predicates2<Object,Object>Predicates2. alwaysTrue()Predicates2<T,P>Predicates2. and(Predicate2<? super T,? super P> op)static <T, P> Predicates2<T,P>Predicates2. and(Predicate2<? super T,? super P> left, Predicate2<? super T,? super P> right)static <T> Predicates2<T,Object>Predicates2. attributeEqual(Function<? super T,?> function)static <T, P extends Comparable<? super P>>
Predicates2<T,P>Predicates2. attributeGreaterThan(Function<? super T,? extends P> function)static <T, P extends Comparable<? super P>>
Predicates2<T,P>Predicates2. attributeGreaterThanOrEqualTo(Function<? super T,? extends P> function)static <T> Predicates2<T,Iterable<?>>Predicates2. attributeIn(Function<T,?> function)static <T, P extends Comparable<? super P>>
Predicates2<T,P>Predicates2. attributeLessThan(Function<? super T,? extends P> function)static <T, P extends Comparable<? super P>>
Predicates2<T,P>Predicates2. attributeLessThanOrEqualTo(Function<? super T,? extends P> function)static <T> Predicates2<T,Object>Predicates2. attributeNotEqual(Function<? super T,?> function)static <T> Predicates2<T,Iterable<?>>Predicates2. attributeNotIn(Function<T,?> function)static Predicates2<String,String>StringPredicates2. contains()Returns true if a String specified on the predicate is contained within a String passed to the the accept method.static Predicates2<String,String>StringPredicates2. endsWith()Returns true if a String passed to the the accept method ends with the string specified on the predicate.static Predicates2<Object,Object>Predicates2. equal()static Predicates2<String,String>StringPredicates2. equalsIgnoreCase()static <T extends Comparable<T>>
Predicates2<T,T>Predicates2. greaterThan()static <T extends Comparable<T>>
Predicates2<T,T>Predicates2. greaterThanOrEqualTo()static Predicates2<Object,Iterable<?>>Predicates2. in()static Predicates2<Object,Class<?>>Predicates2. instanceOf()static Predicates2<Object,Object>Predicates2. isNull()static <T extends Comparable<T>>
Predicates2<T,T>Predicates2. lessThan()static <T extends Comparable<T>>
Predicates2<T,T>Predicates2. lessThanOrEqualTo()static Predicates2<String,String>StringPredicates2. matches()static <T, P> Predicates2<T,P>Predicates2. not(Predicate2<T,P> predicate)static Predicates2<String,String>StringPredicates2. notContains()Returns true if a String specified on the predicate is contained within a String passed to the the accept method.static Predicates2<String,String>StringPredicates2. notEndsWith()Returns false if a String passed to the the accept method ends with the string specified on the predicate.static Predicates2<Object,Object>Predicates2. notEqual()static Predicates2<String,String>StringPredicates2. notEqualsIgnoreCase()static Predicates2<Object,Iterable<?>>Predicates2. notIn()static Predicates2<Object,Class<?>>Predicates2. notInstanceOf()static Predicates2<Object,Object>Predicates2. notNull()static Predicates2<Object,Object>Predicates2. notSameAs()static Predicates2<String,String>StringPredicates2. notStartsWith()Returns false if a String passed to the the accept method starts with the string specified on the predicate.Predicates2<T,P>Predicates2. or(Predicate2<? super T,? super P> op)static <T, P> Predicates2<T,P>Predicates2. or(Predicate2<? super T,? super P> left, Predicate2<? super T,? super P> right)static Predicates2<Object,Object>Predicates2. sameAs()static Predicates2<String,String>StringPredicates2. startsWith()Returns true if a String passed to the the accept method starts with the string specified on the predicate.