public interface IObjectFloatNotEqualsAlmostCheck extends IObjectFloatEqualsAlmostCheckProperties, ICheck
Please refer to {link:IObjectFloatEqualsAlmostCheck} for more details.
Modifier and Type | Method and Description |
---|---|
boolean |
isFloatNotEqualsAlmost(Object caller,
Float valueA,
Float valueB)
Checks if the referenced values are not-equals (B is NOT within [L(A);U(A)]).
|
boolean |
isFloatNotEqualsAlmost(Object caller,
Float valueA,
Float valueB,
Float absoluteEpsilon)
Checks if the referenced values are not-equals (B is NOT within [L(A);U(A)]).
|
boolean |
isFloatNotEqualsAlmost(Object caller,
Float valueA,
Float valueB,
Float absoluteEpsilon,
Float relativeEpsilon)
Checks if the referenced values are not-equals (B is NOT within [L(A);U(A)]).
|
getFloatEqualsAlmostDefaultAbsoluteEpsilon, getFloatEqualsAlmostDefaultRelativeEpsilon, setFloatEqualsAlmostDefaultAbsoluteEpsilon, setFloatEqualsAlmostDefaultRelativeEpsilon
boolean isFloatNotEqualsAlmost(Object caller, Float valueA, Float valueB)
The default absolute epsilon is 0.00001f and the default relative epsilon is 0.000001f {link:IObjectFloatEqualsAlmostCheckProperties}.
caller
- end-user instance initiating the checkvalueA
- value to equals check against value BvalueB
- argument to equals-method of value AIllegalArgumentException
- if caller is nullboolean isFloatNotEqualsAlmost(Object caller, Float valueA, Float valueB, Float absoluteEpsilon)
The default relative epsilon is 0.000001f {link:IObjectFloatEqualsAlmostCheckProperties}.
caller
- end-user instance initiating the checkvalueA
- value to equals check against value BvalueB
- argument to equals-method of value AabsoluteEpsilon
- disregarded absolute difference between A and BIllegalArgumentException
- if caller is nullboolean isFloatNotEqualsAlmost(Object caller, Float valueA, Float valueB, Float absoluteEpsilon, Float relativeEpsilon)
caller
- end-user instance initiating the checkvalueA
- value to equals check against value BvalueB
- argument to equals-method of value AabsoluteEpsilon
- disregarded absolute difference between A and BrelativeEpsilon
- disregarded relative difference between A and BIllegalArgumentException
- if caller is nullThe MIT License (MIT) - Copyright © 2014-2015 Keld Oelykke. All Rights Reserved.