Uses of Interface
org.klojang.check.relation.ComposableIntPredicate
Package
Description
The central package of this Java module.
A collection of functional interfaces that together constitute one category of
checks that can be executed using Klojang Check.
-
Uses of ComposableIntPredicate in org.klojang.check
Modifier and TypeMethodDescriptionstatic ComposableIntPredicate
CommonChecks.even()
Verifies that the argument is an even integer.static ComposableIntPredicate
CommonChecks.negative()
Verifies that the argument is a negative integer.static ComposableIntPredicate
CommonChecks.odd()
Verifies that the argument is an odd integer.static ComposableIntPredicate
CommonChecks.positive()
Verifies that the argument is a positive integer.static ComposableIntPredicate
CommonChecks.zero()
Verifies that the argument is zero (0). -
Uses of ComposableIntPredicate in org.klojang.check.relation
Modifier and TypeMethodDescriptiondefault ComposableIntPredicate
ComposableIntPredicate.and
(boolean test) Returns a new test combining this test with the specified free-form test.default ComposableIntPredicate
ComposableIntPredicate.and
(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.and
(IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default <S,
O, P extends O>
ComposableIntPredicateComposableIntPredicate.and
(S subject, Relation<S, O> relation, Quantifier quantifier, P... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andAlso
(IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andAlso
(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicate
Returns a new test combining this test with the free-form test supplied by the specifiedSupplier
.default ComposableIntPredicate
ComposableIntPredicate.andNot
(int value, IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andNot
(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andNot
(IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andNot
(IntRelation relation, int object) Returns a new test combining this test and the specified test.default <S,
O> ComposableIntPredicate Returns a new test combining this test and the specified test.default <T> ComposableIntPredicate
Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andThat
(int value, IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.andThat
(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default <S,
O> ComposableIntPredicate Returns a new test combining this test and the specified test.default <T> ComposableIntPredicate
Returns a new test combining this test and the specified test.static ComposableIntPredicate
Compose.invalidInt()
Returns aComposableIntPredicate
that always evaluates tofalse
.static ComposableIntPredicate
Compose.invalidIntIf
(int value) Returns aComposablePredicate
that evaluates totrue
if the value to be tested has the specified value.default ComposableIntPredicate
ComposableIntPredicate.negated()
Returns the negation of this predicate.default ComposableIntPredicate
ComposableIntPredicate.or
(boolean test) Returns a new test combining this test with the specified free-form test.default ComposableIntPredicate
ComposableIntPredicate.or
(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.or
(IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default <S,
O, P extends O>
ComposableIntPredicateComposableIntPredicate.or
(S subject, Relation<S, O> relation, Quantifier quantifier, P... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orElse
(IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orElse
(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicate
Returns a new test combining this test with the free-form test supplied by the specifiedSupplier
.default ComposableIntPredicate
ComposableIntPredicate.orNot
(int value, IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orNot
(IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orNot
(IntRelation relation, int object) Returns a new test combining this test and the specified test.default <S,
O> ComposableIntPredicate Returns a new test combining this test and the specified test.default <T> ComposableIntPredicate
Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orThat
(int value, IntPredicate test) Returns a new test combining this test and the specified test.default ComposableIntPredicate
ComposableIntPredicate.orThat
(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default <S,
O> ComposableIntPredicate Returns a new test combining this test and the specified test.default <T> ComposableIntPredicate
Returns a new test combining this test and the specified test.static ComposableIntPredicate
Compose.validInt()
Returns aComposableIntPredicate
that always evaluates totrue
.static ComposableIntPredicate
Compose.validIntIf
(int value) Returns aComposablePredicate
that evaluates totrue
if the value to be tested has the specified value.static ComposableIntPredicate
Compose.validIntWhen
(IntPredicate test) Converts anIntPredicate
to aComposableIntPredicate
.static <O> ComposableIntPredicate
Compose.validIntWhen
(IntObjRelation<O> relation, O object) Converts anIntObjRelation
to aComposableIntPredicate
.static ComposableIntPredicate
Compose.validIntWhen
(IntRelation relation, int object) Converts anRelation
to aComposableIntPredicate
.