Uses of Class
org.eclipse.collections.impl.block.factory.Predicates2
Packages that use Predicates2
Package
Description
This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.-
Uses of Predicates2 in org.eclipse.collections.impl.block.factory
Subclasses of Predicates2 in org.eclipse.collections.impl.block.factoryModifier and TypeClassDescriptionprivate static final class
private static final class
private static final class
Predicates2.And<T,
P> private static final class
private static final class
private static class
Predicates2.GreaterThan<T extends Comparable<T>>
private static class
Predicates2.GreaterThanOrEqual<T extends Comparable<T>>
private static final class
private static final class
private static final class
private static final class
private static class
Predicates2.LessThan<T extends Comparable<T>>
private static class
Predicates2.LessThanOrEqual<T extends Comparable<T>>
private static final class
Predicates2.Not<T,
P> private static final class
private static final class
private static final class
private static final class
private static final class
private static final class
Predicates2.Or<T,
P> private static final class
private static final class
private static final class
private static final class
private static final class
private static final class
private static final class
private static final class
private static final class
Fields in org.eclipse.collections.impl.block.factory declared as Predicates2Modifier and TypeFieldDescriptionprivate static final Predicates2
<Object, Object> Predicates2.ALWAYS_FALSE
private static final Predicates2
<Object, Object> Predicates2.ALWAYS_TRUE
private static final Predicates2
<Object, Object> Predicates2.EQUAL
private static final Predicates2
<?, ?> Predicates2.GREATER_THAN
private static final Predicates2
<?, ?> Predicates2.GREATER_THAN_OR_EQUAL
private static final Predicates2
<Object, Iterable<?>> Predicates2.IN
private static final Predicates2
<Object, Class<?>> Predicates2.INSTANCE_OF
private static final Predicates2
<Object, Object> Predicates2.IS_IDENTICAL
private static final Predicates2
<Object, Object> Predicates2.IS_NULL
private static final Predicates2
<?, ?> Predicates2.LESS_THAN
private static final Predicates2
<?, ?> Predicates2.LESS_THAN_OR_EQUAL
private static final Predicates2
<Object, Object> Predicates2.NOT_EQUAL
private static final Predicates2
<Object, Object> Predicates2.NOT_IDENTITICAL
private static final Predicates2
<Object, Iterable<?>> Predicates2.NOT_IN
private static final Predicates2
<Object, Class<?>> Predicates2.NOT_INSTANCE_OF
private static final Predicates2
<Object, Object> Predicates2.NOT_NULL
Methods in org.eclipse.collections.impl.block.factory that return Predicates2Modifier and TypeMethodDescriptionstatic Predicates2
<Object, Object> Predicates2.alwaysFalse()
static Predicates2
<Object, Object> Predicates2.alwaysTrue()
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 accept method.static Predicates2
<String, String> StringPredicates2.endsWith()
Returns true if a String passed to 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 accept method.static Predicates2
<String, String> StringPredicates2.notEndsWith()
Returns false if a String passed to 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 accept method starts with the string specified on the predicate.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 accept method starts with the string specified on the predicate.