Uses of Interface
com.github.cowwoc.requirements10.java.validator.IntegerValidator
Packages that use IntegerValidator
Package
Description
-
Uses of IntegerValidator in com.github.cowwoc.requirements10.java
Methods in com.github.cowwoc.requirements10.java that return IntegerValidatorModifier and TypeMethodDescriptionstatic IntegerValidator
Validates the state of anInteger
static IntegerValidator
Validates the state of anInteger
Validates the state of anInteger
.Validates the state of anInteger
.static IntegerValidator
DefaultJavaValidators.requireThat
(Integer value, String name) Validates the state of anInteger
.JavaRequireThat.requireThat
(Integer value, String name) Validates the state of anInteger
.static IntegerValidator
Validates the state of anInteger
.static IntegerValidator
Validates the state of anInteger
.Validates the state of anInteger
.Validates the state of anInteger
. -
Uses of IntegerValidator in com.github.cowwoc.requirements10.java.validator
Methods in com.github.cowwoc.requirements10.java.validator that return IntegerValidatorModifier and TypeMethodDescriptionIntegerValidator.isBetween
(int minimum, boolean minimumIsInclusive, int maximum, boolean maximumIsInclusive) Ensures that the value is within a range.IntegerValidator.isBetween
(int minimumInclusive, int maximumExclusive) Ensures that the value is within a range.IntegerValidator.isGreaterThan
(int minimumExclusive) Ensures that the value is greater than a lower bound.IntegerValidator.isGreaterThan
(int minimumExclusive, String name) Ensures that the value is greater than a lower bound.IntegerValidator.isGreaterThanOrEqualTo
(int minimumInclusive) Ensures that the value is greater than or equal to a minimum value.IntegerValidator.isGreaterThanOrEqualTo
(int minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.IntegerValidator.isLessThan
(int maximumExclusive) Ensures that the value is less than an upper bound.IntegerValidator.isLessThan
(int maximumExclusive, String name) Ensures that the value is less than an upper bound.IntegerValidator.isLessThanOrEqualTo
(int maximumInclusive) Ensures that the value is less than or equal to a maximum value.IntegerValidator.isLessThanOrEqualTo
(int maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.IntegerValidator.isMultipleOf
(int factor) Ensures that the value is a multiple offactor
.IntegerValidator.isMultipleOf
(int factor, String name) Ensures that the value is a multiple offactor
.IntegerValidator.isNotMultipleOf
(int factor) Ensures that the value is not a multiple offactor
.IntegerValidator.isNotMultipleOf
(int factor, String name) Ensures that the value is not a multiple offactor
.