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