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