public interface IMath
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Byte a,
java.lang.Byte b)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Integer a,
java.lang.Integer b)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Long a,
java.lang.Long b)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isEqual(java.lang.Short a,
java.lang.Short b)
Checks if a is equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Byte a,
java.lang.Byte b)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Integer a,
java.lang.Integer b)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Long a,
java.lang.Long b)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreater(java.lang.Short a,
java.lang.Short b)
Checks if a is greater than b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Byte a,
java.lang.Byte b)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Integer a,
java.lang.Integer b)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Long a,
java.lang.Long b)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isGreaterOrEqual(java.lang.Short a,
java.lang.Short b)
Checks if a is greater than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.lang.Byte a,
java.lang.Byte b)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.lang.Integer a,
java.lang.Integer b)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
IsLess(java.lang.Long a,
java.lang.Long b)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLess(java.lang.Short a,
java.lang.Short b)
Checks if a is less than b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Byte a,
java.lang.Byte b)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Integer a,
java.lang.Integer b)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Long a,
java.lang.Long b)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isLessOrEqual(java.lang.Short a,
java.lang.Short b)
Checks if a is less than or equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.math.BigInteger a,
java.math.BigInteger b)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Byte a,
java.lang.Byte b)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Integer a,
java.lang.Integer b)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Long a,
java.lang.Long b)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean |
isNotEqual(java.lang.Short a,
java.lang.Short b)
Checks if a is not equal to b (returns false if at least one of the parameters is NULL)
|
boolean IsLess(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isGreater(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isLessOrEqual(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isGreaterOrEqual(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isEqual(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isNotEqual(java.lang.Long a,
java.lang.Long b)
a - ab - bboolean isLess(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isGreater(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isLessOrEqual(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isGreaterOrEqual(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isEqual(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isNotEqual(java.lang.Integer a,
java.lang.Integer b)
a - ab - bboolean isLess(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isGreater(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isLessOrEqual(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isGreaterOrEqual(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isEqual(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isNotEqual(java.lang.Short a,
java.lang.Short b)
a - ab - bboolean isLess(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isGreater(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isLessOrEqual(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isGreaterOrEqual(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isEqual(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isNotEqual(java.lang.Byte a,
java.lang.Byte b)
a - ab - bboolean isLess(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreater(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLessOrEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreaterOrEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isNotEqual(java.lang.Double a,
java.lang.Double b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLess(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreater(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLessOrEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreaterOrEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isNotEqual(java.math.BigDecimal a,
java.math.BigDecimal b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLess(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreater(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLessOrEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isGreaterOrEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isNotEqual(java.lang.Float a,
java.lang.Float b,
int decimals)
a - ab - bdecimals - number of decimals to roundboolean isLess(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isGreater(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isLessOrEqual(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isGreaterOrEqual(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isEqual(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isNotEqual(java.math.BigInteger a,
java.math.BigInteger b)
a - ab - bboolean isLess(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discardedboolean isGreater(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discardedboolean isLessOrEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discardedboolean isGreaterOrEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discardedboolean isEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discardedboolean isNotEqual(java.util.Date a,
java.util.Date b,
boolean noTime)
a - ab - bnoTime - true if time is discarded