- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for AbstractSetMultimap (0.1 sec)
-
guava/src/com/google/common/collect/AbstractSetMultimap.java
@GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractSetMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMapBasedMultimap<K, V> implements SetMultimap<K, V> { /** * Creates a new multimap that uses the provided map. * * @param map place to store the mapping from each key to its corresponding values */ protected AbstractSetMultimap(Map<K, Collection<V>> map) { super(map); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractSetMultimap.java
@GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractSetMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMapBasedMultimap<K, V> implements SetMultimap<K, V> { /** * Creates a new multimap that uses the provided map. * * @param map place to store the mapping from each key to its corresponding values */ protected AbstractSetMultimap(Map<K, Collection<V>> map) { super(map); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java
* * @author Jared Levy */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractSortedSetMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractSetMultimap<K, V> implements SortedSetMultimap<K, V> { /** * Creates a new multimap that uses the provided map. * * @param map place to store the mapping from each key to its corresponding values */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5.5K bytes - Viewed (0)