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 classprivate static final classprivate static final classPredicates2.And<T,P> private static final classprivate static final classprivate static classPredicates2.GreaterThan<T extends Comparable<T>>private static classPredicates2.GreaterThanOrEqual<T extends Comparable<T>>private static final classprivate static final classprivate static final classprivate static final classprivate static classPredicates2.LessThan<T extends Comparable<T>>private static classPredicates2.LessThanOrEqual<T extends Comparable<T>>private static final classPredicates2.Not<T,P> private static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classPredicates2.Or<T,P> private static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as Predicates2Modifier and TypeFieldDescriptionprivate static final Predicates2<Object, Object> Predicates2.ALWAYS_FALSEprivate static final Predicates2<Object, Object> Predicates2.ALWAYS_TRUEprivate static final Predicates2<Object, Object> Predicates2.EQUALprivate static final Predicates2<?, ?> Predicates2.GREATER_THANprivate static final Predicates2<?, ?> Predicates2.GREATER_THAN_OR_EQUALprivate static final Predicates2<Object, Iterable<?>> Predicates2.INprivate static final Predicates2<Object, Class<?>> Predicates2.INSTANCE_OFprivate static final Predicates2<Object, Object> Predicates2.IS_IDENTICALprivate static final Predicates2<Object, Object> Predicates2.IS_NULLprivate static final Predicates2<?, ?> Predicates2.LESS_THANprivate static final Predicates2<?, ?> Predicates2.LESS_THAN_OR_EQUALprivate static final Predicates2<Object, Object> Predicates2.NOT_EQUALprivate static final Predicates2<Object, Object> Predicates2.NOT_IDENTITICALprivate static final Predicates2<Object, Iterable<?>> Predicates2.NOT_INprivate static final Predicates2<Object, Class<?>> Predicates2.NOT_INSTANCE_OFprivate static final Predicates2<Object, Object> Predicates2.NOT_NULLMethods 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.