Uses of Interface
com.github.cowwoc.requirements10.java.validator.PrimitiveCharacterValidator
Packages that use PrimitiveCharacterValidator
Package
Description
-
Uses of PrimitiveCharacterValidator in com.github.cowwoc.requirements10.java
Methods in com.github.cowwoc.requirements10.java that return PrimitiveCharacterValidatorModifier and TypeMethodDescriptionstatic PrimitiveCharacterValidatorDefaultJavaValidators.checkIf(char value) Validates the state of acharstatic PrimitiveCharacterValidatorValidates the state of acharJavaCheckIf.checkIf(char value) Validates the state of achar.Validates the state of achar.static PrimitiveCharacterValidatorDefaultJavaValidators.requireThat(char value, String name) Validates the state of achar.JavaRequireThat.requireThat(char value, String name) Validates the state of achar.static PrimitiveCharacterValidatorDefaultJavaValidators.that(char value) Validates the state of achar.static PrimitiveCharacterValidatorValidates the state of achar.JavaAssertThat.that(char value) Validates the state of achar.Validates the state of achar. -
Uses of PrimitiveCharacterValidator in com.github.cowwoc.requirements10.java.validator
Methods in com.github.cowwoc.requirements10.java.validator that return PrimitiveCharacterValidatorModifier and TypeMethodDescriptionPrimitiveCharacterValidator.isBetween(char minimum, boolean minimumIsInclusive, char maximum, boolean maximumIsInclusive) Ensures that the value is within a range.PrimitiveCharacterValidator.isBetween(char minimumInclusive, char maximumExclusive) Ensures that the value is within a range.PrimitiveCharacterValidator.isEqualTo(char expected) Ensures that the value is equal toexpected.Ensures that the value is equal toexpected.PrimitiveCharacterValidator.isGreaterThan(char minimumExclusive) Ensures that the value is greater than a lower bound.PrimitiveCharacterValidator.isGreaterThan(char minimumExclusive, String name) Ensures that the value is greater than a lower bound.PrimitiveCharacterValidator.isGreaterThanOrEqualTo(char minimumInclusive) Ensures that the value is greater than or equal to a minimum value.PrimitiveCharacterValidator.isGreaterThanOrEqualTo(char minimumInclusive, String name) Ensures that the value is greater than or equal a minimum value.PrimitiveCharacterValidator.isLessThan(char maximumExclusive) Ensures that the value is less than an upper bound.PrimitiveCharacterValidator.isLessThan(char maximumExclusive, String name) Ensures that the value is less than an upper bound.PrimitiveCharacterValidator.isLessThanOrEqualTo(char maximumInclusive) Ensures that the value is less than or equal to a maximum value.PrimitiveCharacterValidator.isLessThanOrEqualTo(char maximumInclusive, String name) Ensures that the value is less than or equal to a maximum value.PrimitiveCharacterValidator.isNotEqualTo(char unwanted) Ensures that the value is not equal tounwanted.PrimitiveCharacterValidator.isNotEqualTo(char unwanted, String name) Ensures that the value is not equal tounwanted.