Uses of Interface
com.github.cowwoc.requirements10.java.validator.CharacterValidator
Packages that use CharacterValidator
Package
Description
-
Uses of CharacterValidator in com.github.cowwoc.requirements10.java
Methods in com.github.cowwoc.requirements10.java that return CharacterValidatorModifier and TypeMethodDescriptionstatic CharacterValidator
Validates the state of aCharacter
static CharacterValidator
Validates the state of aCharacter
Validates the state of aCharacter
.Validates the state of aCharacter
.static CharacterValidator
DefaultJavaValidators.requireThat
(Character value, String name) Validates the state of aCharacter
.JavaRequireThat.requireThat
(Character value, String name) Validates the state of aCharacter
.static CharacterValidator
Validates the state of aCharacter
.static CharacterValidator
Validates the state of aCharacter
.Validates the state of aCharacter
.Validates the state of aCharacter
. -
Uses of CharacterValidator in com.github.cowwoc.requirements10.java.validator
Methods in com.github.cowwoc.requirements10.java.validator that return CharacterValidatorModifier and TypeMethodDescriptionCharacterValidator.isBetween
(char minimum, boolean minimumIsInclusive, char maximum, boolean maximumIsInclusive) Ensures that the value is within a range.CharacterValidator.isBetween
(char minimumInclusive, char maximumExclusive) Ensures that the value is within a range.CharacterValidator.isGreaterThan
(char minimumExclusive) Ensures that the value is greater than a lower bound.CharacterValidator.isGreaterThan
(char minimumExclusive, String name) Ensures that the value is greater than a lower bound.CharacterValidator.isGreaterThanOrEqualTo
(char minimumInclusive) Ensures that the value is greater than or equal to a minimum value.CharacterValidator.isGreaterThanOrEqualTo
(char minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.CharacterValidator.isLessThan
(char maximumExclusive) Ensures that the value is less than an upper bound.CharacterValidator.isLessThan
(char maximumExclusive, String name) Ensures that the value is less than an upper bound.CharacterValidator.isLessThanOrEqualTo
(char maximumInclusive) Ensures that the value is less than or equal to a maximum value.CharacterValidator.isLessThanOrEqualTo
(char maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.