- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for ForwardingMultimap (0.12 sec)
-
android/guava-tests/test/com/google/common/collect/ForwardingMultimapTest.java
import com.google.common.base.Function; import com.google.common.testing.EqualsTester; import com.google.common.testing.ForwardingWrapperTester; import junit.framework.TestCase; /** * Unit test for {@link ForwardingMultimap}. * * @author Hayward Chan */ public class ForwardingMultimapTest extends TestCase { @SuppressWarnings("rawtypes") public void testForwarding() { new ForwardingWrapperTester()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 20:09:59 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingListMultimap.java
* * @author Kurt Alfred Kluever * @since 3.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingListMultimap<K extends @Nullable Object, V extends @Nullable Object> extends ForwardingMultimap<K, V> implements ListMultimap<K, V> { /** Constructor for use by subclasses. */ protected ForwardingListMultimap() {} @Override protected abstract ListMultimap<K, V> delegate(); @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingListMultimap.java
* * @author Kurt Alfred Kluever * @since 3.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingListMultimap<K extends @Nullable Object, V extends @Nullable Object> extends ForwardingMultimap<K, V> implements ListMultimap<K, V> { /** Constructor for use by subclasses. */ protected ForwardingListMultimap() {} @Override protected abstract ListMultimap<K, V> delegate(); @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 2.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
* populate a map to be passed to {@link Multimaps#forMap(Map)}. All tests should run against the * result of {@link #build()}. */ private static final class PopulatableMapAsMultimap<K, V> extends ForwardingMultimap<K, V> { final Map<K, V> map; final SetMultimap<K, V> unusableDelegate; static <K, V> PopulatableMapAsMultimap<K, V> create() { return new PopulatableMapAsMultimap<>(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 28.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
* populate a map to be passed to {@link Multimaps#forMap(Map)}. All tests should run against the * result of {@link #build()}. */ private static final class PopulatableMapAsMultimap<K, V> extends ForwardingMultimap<K, V> { final Map<K, V> map; final SetMultimap<K, V> unusableDelegate; static <K, V> PopulatableMapAsMultimap<K, V> create() { return new PopulatableMapAsMultimap<>(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 28.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
return checkNotNull(delegate); } private static class UnmodifiableMultimap<K extends @Nullable Object, V extends @Nullable Object> extends ForwardingMultimap<K, V> implements Serializable { final Multimap<K, V> delegate; @LazyInit @CheckForNull transient Collection<Entry<K, V>> entries; @LazyInit @CheckForNull transient Multiset<K> keys;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 86.3K bytes - Viewed (0)