Package com.helger.commons.functional
Class Predicates
- java.lang.Object
-
- com.helger.commons.functional.Predicates
-
@Immutable public final class Predicates extends Object
Some globally usable predicates.- Since:
- 9.1.3
- Author:
- Philip Helger
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ICharPredicatecharIsEQ0()static ICharPredicatecharIsGT0()static ICharPredicatecharIsNE0()static DoublePredicatedoubleIsEQ0()static DoublePredicatedoubleIsGE0()static DoublePredicatedoubleIsGT0()static DoublePredicatedoubleIsLE0()static DoublePredicatedoubleIsLT0()static DoublePredicatedoubleIsNE0()static IntPredicateintIsEQ0()static IntPredicateintIsGE0()static IntPredicateintIsGT0()static IntPredicateintIsLE0()static IntPredicateintIsLT0()static IntPredicateintIsNE0()static LongPredicatelongIsEQ0()static LongPredicatelongIsGE0()static LongPredicatelongIsGT0()static LongPredicatelongIsLE0()static LongPredicatelongIsLT0()static LongPredicatelongIsNE0()
-
-
-
Method Detail
-
charIsEQ0
@Nonnull public static ICharPredicate charIsEQ0()
-
charIsNE0
@Nonnull public static ICharPredicate charIsNE0()
-
charIsGT0
@Nonnull public static ICharPredicate charIsGT0()
-
doubleIsLT0
@Nonnull public static DoublePredicate doubleIsLT0()
-
doubleIsLE0
@Nonnull public static DoublePredicate doubleIsLE0()
-
doubleIsEQ0
@Nonnull public static DoublePredicate doubleIsEQ0()
-
doubleIsNE0
@Nonnull public static DoublePredicate doubleIsNE0()
-
doubleIsGE0
@Nonnull public static DoublePredicate doubleIsGE0()
-
doubleIsGT0
@Nonnull public static DoublePredicate doubleIsGT0()
-
intIsLT0
@Nonnull public static IntPredicate intIsLT0()
-
intIsLE0
@Nonnull public static IntPredicate intIsLE0()
-
intIsEQ0
@Nonnull public static IntPredicate intIsEQ0()
-
intIsNE0
@Nonnull public static IntPredicate intIsNE0()
-
intIsGE0
@Nonnull public static IntPredicate intIsGE0()
-
intIsGT0
@Nonnull public static IntPredicate intIsGT0()
-
longIsLT0
@Nonnull public static LongPredicate longIsLT0()
-
longIsLE0
@Nonnull public static LongPredicate longIsLE0()
-
longIsEQ0
@Nonnull public static LongPredicate longIsEQ0()
-
longIsNE0
@Nonnull public static LongPredicate longIsNE0()
-
longIsGE0
@Nonnull public static LongPredicate longIsGE0()
-
longIsGT0
@Nonnull public static LongPredicate longIsGT0()
-
-