Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AbstractListMultimap (0.27 sec)

  1. guava/src/com/google/common/collect/AbstractListMultimap.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractListMultimap<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMapBasedMultimap<K, V> implements ListMultimap<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 AbstractListMultimap(Map<K, Collection<V>> map) {
        super(map);
      }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 4.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractListMultimap.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractListMultimap<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMapBasedMultimap<K, V> implements ListMultimap<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 AbstractListMultimap(Map<K, Collection<V>> map) {
        super(map);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 4.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayListMultimapGwtSerializationDependencies.java

     *
     * <p>TODO(cpovirk): Consider applying this subclass approach to our other types.
     */
    @GwtCompatible(emulated = true)
    abstract class ArrayListMultimapGwtSerializationDependencies<K, V>
        extends AbstractListMultimap<K, V> {
      ArrayListMultimapGwtSerializationDependencies(Map<K, Collection<V>> map) {
        super(map);
      }
      // TODO(cpovirk): Maybe I should have just one shared superclass for AbstractMultimap itself?
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Oct 24 18:57:48 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ArrayListMultimapGwtSerializationDependencies.java

     *
     * <p>TODO(cpovirk): Consider applying this subclass approach to our other types.
     */
    @GwtCompatible(emulated = true)
    abstract class ArrayListMultimapGwtSerializationDependencies<K, V>
        extends AbstractListMultimap<K, V> {
      ArrayListMultimapGwtSerializationDependencies(Map<K, Collection<V>> map) {
        super(map);
      }
      // TODO(cpovirk): Maybe I should have just one shared superclass for AbstractMultimap itself?
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Oct 24 18:57:48 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ArrayListMultimapGwtSerializationDependencies.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Collection;
    import java.util.Map;
    
    @GwtCompatible(emulated = true)
    abstract class ArrayListMultimapGwtSerializationDependencies<K, V>
        extends AbstractListMultimap<K, V> {
      ArrayListMultimapGwtSerializationDependencies(Map<K, Collection<V>> map) {
        super(map);
      }
    
      K dummyKey;
      V dummyValue;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 15 19:08:05 GMT 2017
    - 1012 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

        return new CustomListMultimap<>(map, factory);
      }
    
      private static class CustomListMultimap<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractListMultimap<K, V> {
        transient Supplier<? extends List<V>> factory;
    
        CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) {
          super(map);
          this.factory = checkNotNull(factory);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top