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