Uses of Interface
io.github.cowwoc.requirements13.java.validator.IntegerValidator
Packages that use IntegerValidator
Package
Description
-
Uses of IntegerValidator in io.github.cowwoc.requirements13.java
Methods in io.github.cowwoc.requirements13.java that return IntegerValidatorModifier and TypeMethodDescriptionstatic IntegerValidatorValidates the state of anIntegerstatic IntegerValidatorValidates the state of anIntegerValidates the state of anInteger.Validates the state of anInteger.static IntegerValidatorDefaultJavaValidators.requireThat(Integer value, String name) Validates the state of anInteger.JavaRequireThat.requireThat(Integer value, String name) Validates the state of anInteger.static IntegerValidatorValidates the state of anInteger.static IntegerValidatorValidates the state of anInteger.Validates the state of anInteger.Validates the state of anInteger. -
Uses of IntegerValidator in io.github.cowwoc.requirements13.java.validator
Subinterfaces with type arguments of type IntegerValidator in io.github.cowwoc.requirements13.java.validatorModifier and TypeInterfaceDescriptioninterfaceValidates the state of anInteger.interfaceValidates the state of anInteger.interfaceValidates the state of anInteger.interfaceValidates the state of anInteger.interfaceValidates the state of anInteger.interfaceValidates the state of anInteger.Methods in io.github.cowwoc.requirements13.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.