Uses of Interface
io.github.cowwoc.requirements13.java.validator.ByteValidator
Packages that use ByteValidator
Package
Description
-
Uses of ByteValidator in io.github.cowwoc.requirements13.java
Methods in io.github.cowwoc.requirements13.java that return ByteValidatorModifier and TypeMethodDescriptionstatic ByteValidatorValidates the state of aBytestatic ByteValidatorValidates the state of aByteValidates the state of aByte.Validates the state of aByte.static ByteValidatorDefaultJavaValidators.requireThat(Byte value, String name) Validates the state of aByte.JavaRequireThat.requireThat(Byte value, String name) Validates the state of aByte.static ByteValidatorValidates the state of aByte.static ByteValidatorValidates the state of aByte.Validates the state of aByte.Validates the state of aByte. -
Uses of ByteValidator in io.github.cowwoc.requirements13.java.validator
Subinterfaces with type arguments of type ByteValidator in io.github.cowwoc.requirements13.java.validatorModifier and TypeInterfaceDescriptioninterfaceValidates the state of aByte.interfaceValidates the state of aByte.interfaceValidates the state of aByte.interfaceValidates the state of aByte.interfaceValidates the state of aByte.interfaceValidates the state of aByte.Methods in io.github.cowwoc.requirements13.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.