Class Equivalence<T>
- java.lang.Object
-
- com.google.common.base.Equivalence<T>
-
@GwtCompatible public abstract class Equivalence<T> extends java.lang.Object
A strategy for determining whether two instances are considered equivalent, and for computing hash codes in a manner consistent with that equivalence. Two examples of equivalences are the identity equivalence and the "equals" equivalence.For users targeting Android API level 24 or higher: This class will eventually implement
BiPredicate<T, T>
(as it does in the main Guava artifact), but we currently target a lower API level. In the meantime, if you have support for method references you can use an equivalence as a bi-predicate like this:myEquivalence::equivalent
.- Since:
- 10.0 (mostly source-compatible since 4.0)
- Author:
- Bob Lee, Ben Yu, Gregory Kick
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Equivalence.Wrapper<T extends @Nullable java.lang.Object>
Wraps an object so thatEquivalence.Wrapper.equals(Object)
andEquivalence.Wrapper.hashCode()
delegate to anEquivalence
.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Equivalence()
Constructor for use by subclasses.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract boolean
doEquivalent(T a, T b)
protected abstract int
doHash(T t)
Implemented by the user to return a hash code fort
, subject to the requirements specified inhash(T)
.static Equivalence<java.lang.Object>
equals()
Returns an equivalence that delegates toObject.equals(java.lang.Object)
andObject.hashCode()
.boolean
equivalent(T a, T b)
Returnstrue
if the given objects are considered equivalent.Predicate<@Nullable T>
equivalentTo(T target)
Returns a predicate that evaluates to true if and only if the input is equivalent totarget
according to this equivalence relation.int
hash(T t)
Returns a hash code fort
.static Equivalence<java.lang.Object>
identity()
Returns an equivalence that uses==
to compare values andSystem.identityHashCode(Object)
to compute the hash code.<F> Equivalence<F>
onResultOf(Function<? super F,? extends @Nullable T> function)
Returns a new equivalence relation forF
which evaluates equivalence by first applyingfunction
to the argument, then evaluating usingthis
.<S extends @Nullable T>
Equivalence<java.lang.Iterable<S>>pairwise()
Returns an equivalence over iterables based on the equivalence of their elements.<S extends @Nullable T>
Equivalence.Wrapper<S>wrap(S reference)
Returns a wrapper ofreference
that implementsObject.equals()
such thatwrap(a).equals(wrap(b))
if and only ifequivalent(a, b)
.
-
-
-
Constructor Detail
-
Equivalence
protected Equivalence()
Constructor for use by subclasses.
-
-
Method Detail
-
equivalent
public final boolean equivalent(@CheckForNull T a, @CheckForNull T b)
Returnstrue
if the given objects are considered equivalent.This method describes an equivalence relation on object references, meaning that for all references
x
,y
, andz
(any of which may be null):equivalent(x, x)
is true (reflexive property)equivalent(x, y)
andequivalent(y, x)
each return the same result (symmetric property)- If
equivalent(x, y)
andequivalent(y, z)
are both true, thenequivalent(x, z)
is also true (transitive property)
Note that all calls to
equivalent(x, y)
are expected to return the same result as long as neitherx
nory
is modified.
-
doEquivalent
@ForOverride protected abstract boolean doEquivalent(T a, T b)
- Since:
- 10.0 (previously, subclasses would override equivalent())
-
hash
public final int hash(@CheckForNull T t)
Returns a hash code fort
.The
hash
has the following properties:- It is consistent: for any reference
x
, multiple invocations ofhash(x
} consistently return the same value providedx
remains unchanged according to the definition of the equivalence. The hash need not remain consistent from one execution of an application to another execution of the same application. - It is distributable across equivalence: for any references
x
andy
, ifequivalent(x, y)
, thenhash(x) == hash(y)
. It is not necessary that the hash be distributable across inequivalence. Ifequivalence(x, y)
is false,hash(x) == hash(y)
may still be true. hash(null)
is0
.
- It is consistent: for any reference
-
doHash
@ForOverride protected abstract int doHash(T t)
Implemented by the user to return a hash code fort
, subject to the requirements specified inhash(T)
.This method should not be called except by
hash(T)
. Whenhash(T)
calls this method,t
is guaranteed to be non-null.- Since:
- 10.0 (previously, subclasses would override hash())
-
onResultOf
public final <F> Equivalence<F> onResultOf(Function<? super F,? extends @Nullable T> function)
Returns a new equivalence relation forF
which evaluates equivalence by first applyingfunction
to the argument, then evaluating usingthis
. That is, for any pair of non-null objectsx
andy
,equivalence.onResultOf(function).equivalent(a, b)
is true if and only ifequivalence.equivalent(function.apply(a), function.apply(b))
is true.For example:
Equivalence<Person> SAME_AGE = Equivalence.equals().onResultOf(GET_PERSON_AGE);
function
will never be invoked with a null value.Note that
function
must be consistent according tothis
equivalence relation. That is, invokingFunction.apply(F)
multiple times for a given value must return equivalent results. For example,Equivalence.identity().onResultOf(Functions.toStringFunction())
is broken because it's not guaranteed thatObject.toString()
) always returns the same string instance.- Since:
- 10.0
-
wrap
public final <S extends @Nullable T> Equivalence.Wrapper<S> wrap(S reference)
Returns a wrapper ofreference
that implementsObject.equals()
such thatwrap(a).equals(wrap(b))
if and only ifequivalent(a, b)
.The returned object is serializable if both this
Equivalence
andreference
are serializable (including whenreference
is null).- Since:
- 10.0
-
pairwise
@GwtCompatible(serializable=true) public final <S extends @Nullable T> Equivalence<java.lang.Iterable<S>> pairwise()
Returns an equivalence over iterables based on the equivalence of their elements. More specifically, two iterables are considered equivalent if they both contain the same number of elements, and each pair of corresponding elements is equivalent according tothis
. Null iterables are equivalent to one another.Note that this method performs a similar function for equivalences as
Ordering.lexicographical()
does for orderings.The returned object is serializable if this object is serializable.
- Since:
- 10.0
-
equivalentTo
public final Predicate<@Nullable T> equivalentTo(@CheckForNull T target)
Returns a predicate that evaluates to true if and only if the input is equivalent totarget
according to this equivalence relation.- Since:
- 10.0
-
equals
public static Equivalence<java.lang.Object> equals()
Returns an equivalence that delegates toObject.equals(java.lang.Object)
andObject.hashCode()
.equivalent(T, T)
returnstrue
if both values are null, or if neither value is null andObject.equals(java.lang.Object)
returnstrue
.hash(T)
returns0
if passed a null value.- Since:
- 13.0, 8.0 (in Equivalences with null-friendly behavior), 4.0 (in Equivalences)
-
identity
public static Equivalence<java.lang.Object> identity()
Returns an equivalence that uses==
to compare values andSystem.identityHashCode(Object)
to compute the hash code.equivalent(T, T)
returnstrue
ifa == b
, including in the case that a and b are both null.- Since:
- 13.0, 4.0 (in Equivalences)
-
-