- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for WrappedCollection (0.62 sec)
-
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
*/ @WeakOuter class WrappedCollection extends AbstractCollection<V> { @ParametricNullness final K key; Collection<V> delegate; final @Nullable WrappedCollection ancestor; final @Nullable Collection<V> ancestorDelegate; WrappedCollection( @ParametricNullness K key, Collection<V> delegate, @Nullable WrappedCollection ancestor) { this.key = key;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
return new WrappedSortedSet(key, (SortedSet<V>) collection, null); } else if (collection instanceof Set) { return new WrappedSet(key, (Set<V>) collection); } else { return new WrappedCollection(key, collection, null); } } // can't use Serialization writeMultimap and populateMultimap methods since // there's no way to generate the empty backing map. /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimaps.java
return new WrappedSortedSet(key, (SortedSet<V>) collection, null); } else if (collection instanceof Set) { return new WrappedSet(key, (Set<V>) collection); } else { return new WrappedCollection(key, collection, null); } } // can't use Serialization writeMultimap and populateMultimap methods since // there's no way to generate the empty backing map. /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.9K bytes - Viewed (0)