Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for populateMultimap (0.05 sec)

  1. android/guava/src/com/google/common/collect/Serialization.java

       * #writeMultimap} for the data format.
       */
      static <K extends @Nullable Object, V extends @Nullable Object> void populateMultimap(
          Multimap<K, V> multimap, ObjectInputStream stream)
          throws IOException, ClassNotFoundException {
        int distinctKeys = stream.readInt();
        populateMultimap(multimap, stream, distinctKeys);
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 09 15:58:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ArrayListMultimap.java

        stream.defaultReadObject();
        expectedValuesPerKey = DEFAULT_VALUES_PER_KEY;
        int distinctKeys = stream.readInt();
        Map<K, Collection<V>> map = new HashMap<>();
        setMap(map);
        Serialization.populateMultimap(this, stream, distinctKeys);
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 23:15:58 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top