Uses of Interface
io.github.cowwoc.requirements13.java.validator.PrimitiveFloatValidator
Packages that use PrimitiveFloatValidator
Package
Description
-
Uses of PrimitiveFloatValidator in io.github.cowwoc.requirements13.java
Methods in io.github.cowwoc.requirements13.java that return PrimitiveFloatValidatorModifier and TypeMethodDescriptionstatic PrimitiveFloatValidatorDefaultJavaValidators.checkIf(float value) Validates the state of afloatstatic PrimitiveFloatValidatorValidates the state of afloatJavaCheckIf.checkIf(float value) Validates the state of afloat.Validates the state of afloat.static PrimitiveFloatValidatorDefaultJavaValidators.requireThat(float value, String name) Validates the state of afloat.JavaRequireThat.requireThat(float value, String name) Validates the state of afloat.static PrimitiveFloatValidatorDefaultJavaValidators.that(float value) Validates the state of afloat.static PrimitiveFloatValidatorValidates the state of afloat.JavaAssertThat.that(float value) Validates the state of afloat.Validates the state of afloat. -
Uses of PrimitiveFloatValidator in io.github.cowwoc.requirements13.java.validator
Subinterfaces with type arguments of type PrimitiveFloatValidator in io.github.cowwoc.requirements13.java.validatorModifier and TypeInterfaceDescriptioninterfaceValidates the state of afloat.interfaceValidates the state of afloat.interfaceValidates the state of afloat.interfaceValidates the state of afloat.interfaceValidates the state of afloat.interfaceValidates the state of afloat.interfaceValidates the state of afloat.Methods in io.github.cowwoc.requirements13.java.validator that return PrimitiveFloatValidatorModifier and TypeMethodDescriptionPrimitiveFloatValidator.isBetween(float minimum, boolean minimumIsInclusive, float maximum, boolean maximumIsInclusive) Ensures that the value is within a range.PrimitiveFloatValidator.isBetween(float minimumInclusive, float maximumExclusive) Ensures that the value is within a range.PrimitiveFloatValidator.isEqualTo(float expected) Ensures that the value is equal toexpected.Ensures that the value is equal toexpected.PrimitiveFloatValidator.isGreaterThan(float minimumExclusive) Ensures that the value is greater than a lower bound.PrimitiveFloatValidator.isGreaterThan(float minimumExclusive, String name) Ensures that the value is greater than a lower bound.PrimitiveFloatValidator.isGreaterThanOrEqualTo(float minimumInclusive) Ensures that the value is greater than or equal to a minimum value.PrimitiveFloatValidator.isGreaterThanOrEqualTo(float minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.PrimitiveFloatValidator.isLessThan(float maximumExclusive) Ensures that the value is less than an upper bound.PrimitiveFloatValidator.isLessThan(float maximumExclusive, String name) Ensures that the value is less than an upper bound.PrimitiveFloatValidator.isLessThanOrEqualTo(float maximumInclusive) Ensures that the value is less than or equal to a maximum value.PrimitiveFloatValidator.isLessThanOrEqualTo(float maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.PrimitiveFloatValidator.isMultipleOf(float factor) Ensures that the value is a multiple offactor.PrimitiveFloatValidator.isMultipleOf(float factor, String name) Ensures that the value is a multiple offactor.PrimitiveFloatValidator.isNotEqualTo(float unwanted) Ensures that the value is not equal tounwanted.PrimitiveFloatValidator.isNotEqualTo(float unwanted, String name) Ensures that the value is not equal tounwanted.PrimitiveFloatValidator.isNotMultipleOf(float factor) Ensures that the value is not a multiple offactor.PrimitiveFloatValidator.isNotMultipleOf(float factor, String name) Ensures that the value is not a multiple offactor.