Uses of Interface
org.klojang.check.relation.IntRelation
Packages that use IntRelation
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 IntRelation in org.klojang.check
Methods in org.klojang.check that return IntRelationModifier and TypeMethodDescriptionstatic IntRelationCommonChecks.eq()Verifies that the argument equals the specifiedintvalue.static IntRelationCommonChecks.gt()Verifies that the argument is greater than the specifiedintvalue.static IntRelationCommonChecks.gte()Verifies that the argument is greater than or equal to the specifiedintvalue.static IntRelationCommonChecks.lt()Verifies that the argument is less than the specifiedintvalue.static IntRelationCommonChecks.lte()Verifies that the argument is less than or equal to the specifiedintvalue.static IntRelationCommonChecks.multipleOf()Verifies that the argument is a multiple of the specifiedintvalue.static IntRelationCommonChecks.ne()Verifies that the argument does not equal the specifiedintvalue.Methods in org.klojang.check with parameters of type IntRelationModifier and TypeMethodDescriptionIntCheck.has(IntUnaryOperator property, String name, IntRelation test, int object) Validates a property of the argument.IntCheck.has(IntUnaryOperator property, IntRelation test, int object) Validates a property of the argument.IntCheck.has(IntUnaryOperator property, IntRelation test, int object, String message, Object... msgArgs) Validates a property of the argument.IntCheck.has(IntUnaryOperator property, IntRelation test, int object, Supplier<X2> exception) Validates a property of the argument.ObjectCheck.has(ToIntFunction<T> property, String name, IntRelation test, int object) Validates a property of the argument, retrieved through the specified function, using the specified test.ObjectCheck.has(ToIntFunction<T> property, IntRelation test, int object) Validates a property of the argument, retrieved through the specified function, using the specified test.ObjectCheck.has(ToIntFunction<T> property, IntRelation test, int object, String message, Object... msgArgs) Validates a property of the argument, retrieved through the specified function, using the specified test.<X2 extends Exception>
ObjectCheck<T, X> ObjectCheck.has(ToIntFunction<T> property, IntRelation test, int object, Supplier<X2> exception) Validates a property of the argument, retrieved through the specified function, using the specified test.IntCheck.is(IntRelation test, int object) Validates the argument using the specified test.IntCheck.is(IntRelation test, int object, String message, Object... msgArgs) Validates the argument using the specified test.IntCheck.is(IntRelation test, int object, Supplier<X2> exception) Validates the argument using the specified test.IntCheck.isNot(IntRelation test, int object) Validates the argument using the specified test.IntCheck.isNot(IntRelation test, int object, String message, Object... msgArgs) Validates the argument using the specified test.IntCheck.isNot(IntRelation test, int object, Supplier<X2> exception) Validates the argument using the specified test.IntCheck.notHas(IntUnaryOperator property, String name, IntRelation test, int object) Validates a property of the argument.IntCheck.notHas(IntUnaryOperator property, IntRelation test, int object) Validates a property of the argument.IntCheck.notHas(IntUnaryOperator property, IntRelation test, int object, String message, Object... msgArgs) Validates a property of the argument.IntCheck.notHas(IntUnaryOperator property, IntRelation test, int object, Supplier<X2> exception) Validates a property of the argument.ObjectCheck.notHas(ToIntFunction<T> property, String name, IntRelation test, int object) Validates a property of the argument, retrieved through the specified function, using the specified test.ObjectCheck.notHas(ToIntFunction<T> property, IntRelation test, int object) Validates a property of the argument, retrieved through the specified function, using the specified test.ObjectCheck.notHas(ToIntFunction<T> property, IntRelation test, int object, String message, Object... msgArgs) Validates a property of the argument using the specified test.<X2 extends Exception>
ObjectCheck<T, X> ObjectCheck.notHas(ToIntFunction<T> property, IntRelation test, int object, Supplier<X2> exception) Validates a property of the argument, retrieved through the specified function, using the specified test. -
Uses of IntRelation in org.klojang.check.relation
Methods in org.klojang.check.relation that return IntRelationModifier and TypeMethodDescriptiondefault IntRelationIntRelation.converse()Returns the converse of this relation, swapping subject and object in the relationship.default IntRelationIntRelation.negate()Returns the negation of thisIntRelation.Methods in org.klojang.check.relation with parameters of type IntRelationModifier and TypeMethodDescriptiondefault ComposableIntPredicateComposableIntPredicate.and(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.and(IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default <V> ComposablePredicate<V> ComposablePredicate.and(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.andAlso(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.andNot(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.andNot(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.andThat(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default <V> ComposablePredicate<V> ComposablePredicate.andThat(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.or(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.or(IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default <V> ComposablePredicate<V> ComposablePredicate.or(int subject, IntRelation relation, Quantifier quantifier, int... objects) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.orElse(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.orNot(IntRelation relation, int object) Returns a new test combining this test and the specified test.default ComposableIntPredicateComposableIntPredicate.orThat(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.default <V> ComposablePredicate<V> ComposablePredicate.orThat(int subject, IntRelation relation, int object) Returns a new test combining this test and the specified test.static ComposableIntPredicateCompose.validIntWhen(IntRelation relation, int object) Converts anRelationto aComposableIntPredicate.