- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for UndefinedEquals (0.55 sec)
-
android/guava/src/com/google/common/collect/FilteredEntryMultimap.java
} @Override /* * For discussion of equality in Multimap value collections, see the suppression for * UndefinedEquals in AbstractMapBasedMultimap. */ @SuppressWarnings("UndefinedEquals") public boolean remove(@Nullable Object o) { if (o instanceof Collection) { Collection<?> c = (Collection<?>) o;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/FilteredEntryMultimap.java
} @Override /* * For discussion of equality in Multimap value collections, see the suppression for * UndefinedEquals in AbstractMapBasedMultimap. */ @SuppressWarnings("UndefinedEquals") public boolean remove(@Nullable Object o) { if (o instanceof Collection) { Collection<?> c = (Collection<?>) o;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.3K 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)