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