Uses of Class
specialized_checkers.math.numbers.bigTypes.CheckerBigInteger
Packages that use CheckerBigInteger
-
Uses of CheckerBigInteger in specialized_checkers.math.numbers.bigTypes
Subclasses with type arguments of type CheckerBigInteger in specialized_checkers.math.numbers.bigTypesModifier and TypeClassDescriptionclass
Checker forBigInteger
instances, providing fluent validation methods for arbitrary-precision integer numbers.Classes in specialized_checkers.math.numbers.bigTypes that implement interfaces with type arguments of type CheckerBigIntegerModifier and TypeClassDescriptionclass
Checker forBigInteger
instances, providing fluent validation methods for arbitrary-precision integer numbers.Methods in specialized_checkers.math.numbers.bigTypes that return CheckerBigIntegerModifier and TypeMethodDescriptionstatic CheckerBigInteger
CheckerBigInteger.check
(BigInteger number) Creates a newCheckerBigInteger
for the givenBigInteger
instance with a default name.static CheckerBigInteger
CheckerBigInteger.check
(BigInteger number, String name) Creates a newCheckerBigInteger
for the givenBigInteger
instance with a custom name.CheckerBigInteger.isDivisibleBy
(BigInteger divisor) Asserts that theBigInteger
is divisible by the specified divisor.CheckerBigInteger.isEven()
Asserts that theBigInteger
is even (divisible by two).CheckerBigInteger.isGreaterOrEqualTo
(Byte number) Asserts that theBigInteger
is greater than or equal to the specifiedByte
value.CheckerBigInteger.isGreaterOrEqualTo
(Double number) Asserts that theBigInteger
is greater than or equal to the specifiedDouble
value.CheckerBigInteger.isGreaterOrEqualTo
(Float number) Asserts that theBigInteger
is greater than or equal to the specifiedFloat
value.CheckerBigInteger.isGreaterOrEqualTo
(Integer number) Asserts that theBigInteger
is greater than or equal to the specifiedInteger
value.CheckerBigInteger.isGreaterOrEqualTo
(Long number) Asserts that theBigInteger
is greater than or equal to the specifiedLong
value.CheckerBigInteger.isGreaterOrEqualTo
(Short number) Asserts that theBigInteger
is greater than or equal to the specifiedShort
value.CheckerBigInteger.isGreaterThan
(Byte number) Asserts that theBigInteger
is greater than the specified value.CheckerBigInteger.isGreaterThan
(Double number) Asserts that theBigInteger
is greater than the specifiedDouble
value.CheckerBigInteger.isGreaterThan
(Float number) Asserts that theBigInteger
is greater than the specifiedFloat
value.CheckerBigInteger.isGreaterThan
(Integer number) Asserts that theBigInteger
is less than the specified value.CheckerBigInteger.isGreaterThan
(Long number) Asserts that theBigInteger
is less than or equal to the specified value.CheckerBigInteger.isGreaterThan
(Short number) Asserts that theBigInteger
is greater than or equal to the specified value.CheckerBigInteger.isLessOrEqualTo
(Byte number) Asserts that theBigInteger
is less than or equal to the specifiedByte
value.CheckerBigInteger.isLessOrEqualTo
(Double number) Asserts that theBigInteger
is less than or equal to the specifiedDouble
value.CheckerBigInteger.isLessOrEqualTo
(Float number) Asserts that theBigInteger
is less than or equal to the specifiedFloat
value.CheckerBigInteger.isLessOrEqualTo
(Integer number) Asserts that theBigInteger
is less than or equal to the specifiedInteger
value.CheckerBigInteger.isLessOrEqualTo
(Long number) Asserts that theBigInteger
is less than or equal to the specifiedLong
value.CheckerBigInteger.isLessOrEqualTo
(Short number) Asserts that theBigInteger
is less than or equal to the specifiedShort
value.CheckerBigInteger.isLessThan
(Byte number) Asserts that theBigInteger
is less than the specifiedByte
value.CheckerBigInteger.isLessThan
(Double number) Asserts that theBigInteger
is less than the specifiedDouble
value.CheckerBigInteger.isLessThan
(Float number) Asserts that theBigInteger
is less than the specifiedFloat
value.CheckerBigInteger.isLessThan
(Integer number) Asserts that theBigInteger
is less than the specifiedInteger
value.CheckerBigInteger.isLessThan
(Long number) Asserts that theBigInteger
is less than the specifiedLong
value.CheckerBigInteger.isLessThan
(Short number) Asserts that theBigInteger
is less than the specifiedShort
value.CheckerBigInteger.isNegative()
Asserts that theBigInteger
is negative (less than zero).CheckerBigInteger.isNegativeOrZero()
Asserts that theBigInteger
is negative or zero (less than or equal to zero).CheckerBigInteger.isOdd()
Asserts that theBigInteger
is odd (not divisible by two).CheckerBigInteger.isPositive()
Asserts that theBigInteger
is positive (greater than zero).CheckerBigInteger.isPositiveOrZero()
Asserts that theBigInteger
is positive or zero (greater than or equal to zero).CheckerBigInteger.isPowerOfTwo()
Asserts that theBigInteger
is a power of two.CheckerBigInteger.isProbablePrime
(int certainty) Asserts that theBigInteger
is probably prime, with the specified certainty.CheckerBigInteger.isZero()
Asserts that theBigInteger
is zero.protected CheckerBigInteger
CheckerBigInteger.self()
Returns this checker instance (for fluent API usage). -
Uses of CheckerBigInteger in util
Methods in util that return CheckerBigIntegerModifier and TypeMethodDescriptionChecker.isBigInteger()
Checks if the object is a BigInteger and returns a CheckerBigInteger for further validation.