|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.common.base.Equivalences
@Beta @GwtCompatible public final class Equivalences
Contains static factory methods for creating Equivalence
instances.
All methods return serializable instances.
Method Summary | ||
---|---|---|
static Equivalence<Object> |
equals()
Returns an equivalence that delegates to Object.equals(java.lang.Object) and Object.hashCode() . |
|
static Equivalence<Object> |
identity()
Returns an equivalence that uses == to compare values and System.identityHashCode(Object) to compute the hash code. |
|
static
|
pairwise(Equivalence<? super T> elementEquivalence)
Deprecated. use Equivalence.pairwise() , which behaves exactly the same. This method is
scheduled for deletion from Guava in Guava release 11.0. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static Equivalence<Object> equals()
Object.equals(java.lang.Object)
and Object.hashCode()
.
Equivalence.equivalent(T, T)
returns true
if both values are null, or if neither
value is null and Object.equals(java.lang.Object)
returns true
. Equivalence.hash(T)
returns
0
if passed a null value.
public static Equivalence<Object> identity()
==
to compare values and System.identityHashCode(Object)
to compute the hash code. Equivalence.equivalent(T, T)
returns true
if a == b
, including in the case that a and b are both null.
@Deprecated @GwtCompatible(serializable=true) public static <T> Equivalence<Iterable<T>> pairwise(Equivalence<? super T> elementEquivalence)
Equivalence.pairwise()
, which behaves exactly the same. This method is
scheduled for deletion from Guava in Guava release 11.0.
elementEquivalence
. Null iterables are equivalent to one another.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |