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