Home | History | Annotate | Download | only in collect

Lines Matching refs:multiset

42    * Reads a count corresponding to a serialized map, multiset, or multimap. It
45 * multiset serialized by {@link
46 * #writeMultiset(Multiset, ObjectOutputStream)}, or the number of distinct
105 * Stores the contents of a multiset in an output stream, as part of
114 Multiset<E> multiset, ObjectOutputStream stream) throws IOException {
115 int entryCount = multiset.entrySet().size();
117 for (Multiset.Entry<E> entry : multiset.entrySet()) {
124 * Populates a multiset by reading an input stream, as part of
129 Multiset<E> multiset, ObjectInputStream stream)
132 populateMultiset(multiset, stream, distinctElements);
136 * Populates a multiset by reading an input stream, as part of
142 Multiset<E> multiset, ObjectInputStream stream, int distinctElements)
148 multiset.add(element, count);