Uses of Class
specialized_checkers.math.numbers.bigTypes.CheckerBigDecimal
Packages that use CheckerBigDecimal
-
Uses of CheckerBigDecimal in specialized_checkers.math.numbers.bigTypes
Subclasses with type arguments of type CheckerBigDecimal in specialized_checkers.math.numbers.bigTypesModifier and TypeClassDescriptionclass
Checker forBigDecimal
instances, providing fluent validation methods for arbitrary-precision decimal numbers.Classes in specialized_checkers.math.numbers.bigTypes that implement interfaces with type arguments of type CheckerBigDecimalModifier and TypeClassDescriptionclass
Checker forBigDecimal
instances, providing fluent validation methods for arbitrary-precision decimal numbers.Methods in specialized_checkers.math.numbers.bigTypes that return CheckerBigDecimalModifier and TypeMethodDescriptionstatic CheckerBigDecimal
CheckerBigDecimal.check
(BigDecimal number) Creates a newCheckerBigDecimal
for the givenBigDecimal
instance with a default name.static CheckerBigDecimal
CheckerBigDecimal.check
(BigDecimal number, String name) Creates a newCheckerBigDecimal
for the givenBigDecimal
instance with a custom name.CheckerBigDecimal.isGreaterOrEqualTo
(Byte number) Asserts that theBigDecimal
is greater than or equal to the specifiedByte
value.CheckerBigDecimal.isGreaterOrEqualTo
(Double number) Asserts that theBigDecimal
is greater than or equal to the specifiedDouble
value.CheckerBigDecimal.isGreaterOrEqualTo
(Float number) Asserts that theBigDecimal
is greater than or equal to the specifiedFloat
value.CheckerBigDecimal.isGreaterOrEqualTo
(Integer number) Asserts that theBigDecimal
is greater than or equal to the specifiedInteger
value.CheckerBigDecimal.isGreaterOrEqualTo
(Long number) Asserts that theBigDecimal
is greater than or equal to the specifiedLong
value.CheckerBigDecimal.isGreaterOrEqualTo
(Short number) Asserts that theBigDecimal
is greater than or equal to the specifiedShort
value.CheckerBigDecimal.isGreaterThan
(Byte number) Asserts that theBigDecimal
is greater than the specifiedByte
value.CheckerBigDecimal.isGreaterThan
(Double number) Asserts that theBigDecimal
is greater than the specifiedDouble
value.CheckerBigDecimal.isGreaterThan
(Float number) Asserts that theBigDecimal
is greater than the specifiedFloat
value.CheckerBigDecimal.isGreaterThan
(Integer number) Asserts that theBigDecimal
is greater than the specifiedInteger
value.CheckerBigDecimal.isGreaterThan
(Long number) Asserts that theBigDecimal
is greater than the specifiedLong
value.CheckerBigDecimal.isGreaterThan
(Short number) Asserts that theBigDecimal
is greater than the specifiedShort
value.CheckerBigDecimal.isLessOrEqualTo
(Byte number) Asserts that theBigDecimal
is less than or equal to the specifiedByte
value.CheckerBigDecimal.isLessOrEqualTo
(Double number) Asserts that theBigDecimal
is less than or equal to the specifiedDouble
value.CheckerBigDecimal.isLessOrEqualTo
(Float number) Asserts that theBigDecimal
is less than or equal to the specifiedFloat
value.CheckerBigDecimal.isLessOrEqualTo
(Integer number) Asserts that theBigDecimal
is less than or equal to the specifiedInteger
value.CheckerBigDecimal.isLessOrEqualTo
(Long number) Asserts that theBigDecimal
is less than or equal to the specifiedLong
value.CheckerBigDecimal.isLessOrEqualTo
(Short number) Asserts that theBigDecimal
is less than or equal to the specifiedShort
value.CheckerBigDecimal.isLessThan
(Byte number) Asserts that theBigDecimal
is less than the specifiedByte
value.CheckerBigDecimal.isLessThan
(Double number) Asserts that theBigDecimal
is less than the specifiedDouble
value.CheckerBigDecimal.isLessThan
(Float number) Asserts that theBigDecimal
is less than the specifiedFloat
value.CheckerBigDecimal.isLessThan
(Integer number) Asserts that theBigDecimal
is less than the specifiedInteger
value.CheckerBigDecimal.isLessThan
(Long number) Asserts that theBigDecimal
is less than the specifiedLong
value.CheckerBigDecimal.isLessThan
(Short number) Asserts that theBigDecimal
is less than the specifiedShort
value.CheckerBigDecimal.isNegative()
Asserts that theBigDecimal
is negative (less than zero).CheckerBigDecimal.isNegativeOrZero()
Asserts that theBigDecimal
is negative or zero (less than or equal to zero).CheckerBigDecimal.isPositive()
Asserts that theBigDecimal
is positive (greater than zero).CheckerBigDecimal.isPositiveOrZero()
Asserts that theBigDecimal
is positive or zero (greater than or equal to zero).CheckerBigDecimal.isZero()
Asserts that theBigDecimal
is zero.protected CheckerBigDecimal
CheckerBigDecimal.self()
Returns this checker instance (for fluent API usage). -
Uses of CheckerBigDecimal in util
Methods in util that return CheckerBigDecimalModifier and TypeMethodDescriptionChecker.isBigDecimal()
Checks if the object is a BigDecimal and returns a CheckerBigDecimal for further validation.