Uses of Interface
com.github.cowwoc.requirements10.java.validator.PrimitiveDoubleValidator
Packages that use PrimitiveDoubleValidator
Package
Description
-
Uses of PrimitiveDoubleValidator in com.github.cowwoc.requirements10.java
Methods in com.github.cowwoc.requirements10.java that return PrimitiveDoubleValidatorModifier and TypeMethodDescriptionstatic PrimitiveDoubleValidator
DefaultJavaValidators.checkIf
(double value) Validates the state of adouble
static PrimitiveDoubleValidator
Validates the state of adouble
JavaCheckIf.checkIf
(double value) Validates the state of adouble
.Validates the state of adouble
.static PrimitiveDoubleValidator
DefaultJavaValidators.requireThat
(double value, String name) Validates the state of adouble
.JavaRequireThat.requireThat
(double value, String name) Validates the state of adouble
.static PrimitiveDoubleValidator
DefaultJavaValidators.that
(double value) Validates the state of adouble
.static PrimitiveDoubleValidator
Validates the state of adouble
.JavaAssertThat.that
(double value) Validates the state of adouble
.Validates the state of adouble
. -
Uses of PrimitiveDoubleValidator in com.github.cowwoc.requirements10.java.validator
Methods in com.github.cowwoc.requirements10.java.validator that return PrimitiveDoubleValidatorModifier and TypeMethodDescriptionPrimitiveDoubleValidator.isBetween
(double minimum, boolean minimumIsInclusive, double maximum, boolean maximumIsInclusive) Ensures that the value is within a range.PrimitiveDoubleValidator.isBetween
(double minimumInclusive, double maximumExclusive) Ensures that the value is within a range.PrimitiveDoubleValidator.isEqualTo
(double expected) Ensures that the value is equal toexpected
.Ensures that the value is equal toexpected
.PrimitiveDoubleValidator.isGreaterThan
(double minimumExclusive) Ensures that the value is greater than a lower bound.PrimitiveDoubleValidator.isGreaterThan
(double minimumExclusive, String name) Ensures that the value is greater than a lower bound.PrimitiveDoubleValidator.isGreaterThanOrEqualTo
(double minimumInclusive) Ensures that the value is greater than or equal to a minimum value.PrimitiveDoubleValidator.isGreaterThanOrEqualTo
(double minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.PrimitiveDoubleValidator.isLessThan
(double maximumExclusive) Ensures that the value is less than an upper bound.PrimitiveDoubleValidator.isLessThan
(double maximumExclusive, String name) Ensures that the value is less than an upper bound.PrimitiveDoubleValidator.isLessThanOrEqualTo
(double maximumInclusive) Ensures that the value is less than or equal to a maximum value.PrimitiveDoubleValidator.isLessThanOrEqualTo
(double maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.PrimitiveDoubleValidator.isMultipleOf
(double factor) Ensures that the value is a multiple offactor
.PrimitiveDoubleValidator.isMultipleOf
(double factor, String name) Ensures that the value is a multiple offactor
.PrimitiveDoubleValidator.isNotEqualTo
(double unwanted) Ensures that the value is not equal tounwanted
.PrimitiveDoubleValidator.isNotEqualTo
(double unwanted, String name) Ensures that the value is not equal tounwanted
.PrimitiveDoubleValidator.isNotMultipleOf
(double factor) Ensures that the value is not a multiple offactor
.PrimitiveDoubleValidator.isNotMultipleOf
(double factor, String name) Ensures that the value is not a multiple offactor
.