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