Home | History | Annotate | Download | only in collect

Lines Matching full:multimap

42    * Reads a count corresponding to a serialized map, multiset, or multimap. It
47 * keys in a multimap serialized by {@link
48 * #writeMultimap(Multimap, ObjectOutputStream)}.
153 * Stores the contents of a multimap in an output stream, as part of
155 * change while the method is running. The {@link Multimap#asMap} view
164 Multimap<K, V> multimap, ObjectOutputStream stream) throws IOException {
165 stream.writeInt(multimap.asMap().size());
166 for (Map.Entry<K, Collection<V>> entry : multimap.asMap().entrySet()) {
176 * Populates a multimap by reading an input stream, as part of
181 Multimap<K, V> multimap, ObjectInputStream stream)
184 populateMultimap(multimap, stream, distinctKeys);
188 * Populates a multimap by reading an input stream, as part of
194 Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys)
199 Collection<V> values = multimap.get(key);