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