Uses of Class
specialized_checkers.math.numbers.integerTypes.CheckerInteger
Packages that use CheckerInteger
-
Uses of CheckerInteger in specialized_checkers.math.numbers.integerTypes
Subclasses with type arguments of type CheckerInteger in specialized_checkers.math.numbers.integerTypesModifier and TypeClassDescriptionclass
Checker forInteger
instances, providing fluent validation methods for integer numbers.Classes in specialized_checkers.math.numbers.integerTypes that implement interfaces with type arguments of type CheckerIntegerModifier and TypeClassDescriptionclass
Checker forInteger
instances, providing fluent validation methods for integer numbers.Methods in specialized_checkers.math.numbers.integerTypes that return CheckerIntegerModifier and TypeMethodDescriptionstatic CheckerInteger
Creates a newCheckerInteger
for the givenInteger
instance with a default name.static CheckerInteger
Creates a newCheckerInteger
for the givenInteger
instance with a custom name.static CheckerInteger
Creates a newCheckerInteger
for the givenNumber
instance with a default name.static CheckerInteger
Creates a newCheckerInteger
for the givenNumber
instance with a custom name.CheckerInteger.isEven()
Asserts that theInteger
value is even (divisible by two).CheckerInteger.isGreaterOrEqualTo
(Byte number) Asserts that theInteger
value is greater than or equal to the specifiedByte
value.CheckerInteger.isGreaterOrEqualTo
(Double number) Asserts that theInteger
value is greater than or equal to the specifiedDouble
value.CheckerInteger.isGreaterOrEqualTo
(Float number) Asserts that theInteger
value is greater than or equal to the specifiedFloat
value.CheckerInteger.isGreaterOrEqualTo
(Integer number) Asserts that theInteger
value is greater than or equal to the specifiedInteger
value.CheckerInteger.isGreaterOrEqualTo
(Long number) Asserts that theInteger
value is greater than or equal to the specifiedLong
value.CheckerInteger.isGreaterOrEqualTo
(Short number) Asserts that theInteger
value is greater than or equal to the specifiedShort
value.CheckerInteger.isGreaterThan
(Byte number) Asserts that theInteger
value is greater than the specified value.CheckerInteger.isGreaterThan
(Double number) Asserts that theInteger
value is greater than the specifiedDouble
value.CheckerInteger.isGreaterThan
(Float number) Asserts that theInteger
value is greater than the specifiedFloat
value.CheckerInteger.isGreaterThan
(Integer number) Asserts that theInteger
value is less than the specified value.CheckerInteger.isGreaterThan
(Long number) Asserts that theInteger
value is less than or equal to the specified value.CheckerInteger.isGreaterThan
(Short number) Asserts that theInteger
value is greater than or equal to the specified value.CheckerInteger.isLessOrEqualTo
(Byte number) Asserts that theInteger
value is less than or equal to the specifiedByte
value.CheckerInteger.isLessOrEqualTo
(Double number) Asserts that theInteger
value is less than or equal to the specifiedDouble
value.CheckerInteger.isLessOrEqualTo
(Float number) Asserts that theInteger
value is less than or equal to the specifiedFloat
value.CheckerInteger.isLessOrEqualTo
(Integer number) Asserts that theInteger
value is less than or equal to the specifiedInteger
value.CheckerInteger.isLessOrEqualTo
(Long number) Asserts that theInteger
value is less than or equal to the specifiedLong
value.CheckerInteger.isLessOrEqualTo
(Short number) Asserts that theInteger
value is less than or equal to the specifiedShort
value.CheckerInteger.isLessThan
(Byte number) Asserts that theInteger
value is less than or equal to the specifiedByte
value.CheckerInteger.isLessThan
(Double number) Asserts that theInteger
value is less than the specifiedDouble
value.CheckerInteger.isLessThan
(Float number) Asserts that theInteger
value is less than the specifiedFloat
value.CheckerInteger.isLessThan
(Integer number) Asserts that theInteger
value is less than or equal to the specifiedInteger
value.CheckerInteger.isLessThan
(Long number) Asserts that theInteger
value is less than or equal to the specifiedLong
value.CheckerInteger.isLessThan
(Short number) Asserts that theInteger
value is less than or equal to the specifiedShort
value.CheckerInteger.isNegative()
Asserts that theInteger
value is negative (less than zero).CheckerInteger.isNegativeOrZero()
Asserts that theInteger
value is negative or zero (less than or equal to zero).CheckerInteger.isOdd()
Asserts that theInteger
value is odd (not divisible by two).CheckerInteger.isPositive()
Asserts that theInteger
value is positive (greater than zero).CheckerInteger.isPositiveOrZero()
Asserts that theInteger
value is positive or zero (greater than or equal to zero).CheckerInteger.isPrime()
Asserts that theInteger
value is prime.CheckerInteger.isZero()
Asserts that theInteger
value is zero.protected CheckerInteger
CheckerInteger.self()
Returns this checker instance (for fluent API usage). -
Uses of CheckerInteger in util
Methods in util that return CheckerIntegerModifier and TypeMethodDescriptionChecker.isInteger()
Checks if the object is an Integer and returns a CheckerInteger for further validation.