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