Uses of Interface
com.github.cowwoc.requirements10.java.validator.UnsignedIntegerValidator
Packages that use UnsignedIntegerValidator
-
Uses of UnsignedIntegerValidator in com.github.cowwoc.requirements10.java.validator
Methods in com.github.cowwoc.requirements10.java.validator that return UnsignedIntegerValidatorModifier and TypeMethodDescriptionUnsignedIntegerValidator.isBetween(int minimum, boolean minimumIsInclusive, int maximum, boolean maximumIsInclusive) Ensures that the value is within a range.UnsignedIntegerValidator.isBetween(int minimumInclusive, int maximumExclusive) Ensures that the value is within a range.UnsignedIntegerValidator.isGreaterThan(int minimumExclusive) Ensures that the value is greater than a lower bound.UnsignedIntegerValidator.isGreaterThan(int minimumExclusive, String name) Ensures that the value is greater than a lower bound.UnsignedIntegerValidator.isGreaterThanOrEqualTo(int minimumInclusive) Ensures that the value is greater than or equal to a minimum value.UnsignedIntegerValidator.isGreaterThanOrEqualTo(int minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.UnsignedIntegerValidator.isLessThan(int maximumExclusive) Ensures that the value is less than an upper bound.UnsignedIntegerValidator.isLessThan(int maximumExclusive, String name) Ensures that the value is less than an upper bound.UnsignedIntegerValidator.isLessThanOrEqualTo(int maximumInclusive) Ensures that the value is less than or equal to a maximum value.UnsignedIntegerValidator.isLessThanOrEqualTo(int maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.UnsignedIntegerValidator.isMultipleOf(int factor) Ensures that the value is a multiple offactor.UnsignedIntegerValidator.isMultipleOf(int factor, String name) Ensures that the value is a multiple offactor.UnsignedIntegerValidator.isNotMultipleOf(int factor) Ensures that the value is not a multiple offactor.UnsignedIntegerValidator.isNotMultipleOf(int factor, String name) Ensures that the value is not a multiple offactor.