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