- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for UndefinedEquals (0.05 sec)
-
guava/src/com/google/common/collect/ForwardingMultimap.java
@Override public Collection<V> values() { return delegate().values(); } @Override // A forwarding implementation can't do any better than the underlying object. @SuppressWarnings("UndefinedEquals") public boolean equals(@Nullable Object object) { return object == this || delegate().equals(object); } @Override public int hashCode() { return delegate().hashCode(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
* provide a better implementation than the input Collection, at least without dramatic changes * like copying it to a new Set—which might then test for element equality differently. */ @SuppressWarnings("UndefinedEquals") public boolean equals(@Nullable Object obj) { if (obj instanceof InPredicate) { InPredicate<?> that = (InPredicate<?>) obj; return target.equals(that.target); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
* implement equals(), such as most Queue implementations, will get the same behavior from our * value-collection wrappers (and from Multimap.equals) as from the underlying Collection. */ @SuppressWarnings("UndefinedEquals") public boolean equals(@Nullable Object object) { if (object == this) { return true; } refreshIfEmpty(); return delegate.equals(object); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0)