Package com.google.common.truth
Class FloatSubject.TolerantFloatComparison
- java.lang.Object
-
- com.google.common.truth.FloatSubject.TolerantFloatComparison
-
- Enclosing class:
- FloatSubject
public static final class FloatSubject.TolerantFloatComparison extends Object
A partially specified check about an approximate relationship to afloatvalue using a tolerance.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(@Nullable Object other)Deprecated.Object.equals(Object)is not supported on TolerantFloatComparison.inthashCode()Deprecated.Object.hashCode()is not supported on TolerantFloatComparisonvoidof(float other)Checks that the actual value is within the tolerance of the given value or not within the tolerance of the given value, depending on the choice made earlier in the fluent call chain.
-
-
-
Method Detail
-
of
public void of(float other)
Checks that the actual value is within the tolerance of the given value or not within the tolerance of the given value, depending on the choice made earlier in the fluent call chain. The actual value and tolerance are also specified earlier in the fluent call chain.
-
equals
@Deprecated public boolean equals(@Nullable Object other)
Deprecated.Object.equals(Object)is not supported on TolerantFloatComparison. If you meant to compare floats, useof(float)instead.- Overrides:
equalsin classObject- Throws:
UnsupportedOperationException- always
-
hashCode
@Deprecated public int hashCode()
Deprecated.Object.hashCode()is not supported on TolerantFloatComparison- Overrides:
hashCodein classObject- Throws:
UnsupportedOperationException- always
-
-