Home | History | Annotate | Download | only in collect

Lines Matching full:link

30  * A collection that supports order-independent equality, like {@link Set}, but
40 * more than {@link Integer#MAX_VALUE} occurrences of any one element.
43 * {@code Collection}. It also defines an additional query operation, {@link
45 * bulk-modification operations, for example {@link #add(Object, int)}, to add
48 * but implementations which support the standard collection operations {@link
49 * #add(Object)} or {@link #remove(Object)} are encouraged to implement the
50 * related methods as well. Finally, two collection views are provided: {@link
52 * collapsed", and {@link #entrySet} is similar but contains {@link Entry
64 * and should throw {@link UnsupportedOperationException} when they are not
69 * <p>A multiset uses {@link Object#equals} to determine whether two instances
82 * <i>count</i> of the element). Note that for an {@link Object#equals}-based
83 * multiset, this gives the same result as {@link Collections#frequency}
86 * <p><b>Note:</b> the utility method {@link Iterables#frequency} generalizes
100 * {@code occurrences == 1}, this method has the identical effect to {@link
111 * this operation would result in more than {@link Integer#MAX_VALUE}
151 * {@link #setCount(Object, int)}, provided that the element has the expected
196 * {@link #elementSet}). The order of the elements in the element set is
213 * An unmodifiable element-count pair for a multiset. The {@link
301 * result of invoking {@link #toString} on the {@link #entrySet}, yielding a
322 * <p>This method refines {@link Collection#contains} to further specify that
336 * <p>This method refines {@link Collection#containsAll} to further specify
344 * collection type like {@link List}, but it may be unexpected to the user of
358 * <p>This method refines {@link Collection#add}, which only <i>ensures</i>
366 * multiset, unlike other {@link Collection} types
369 * @throws IllegalArgumentException if {@link Integer#MAX_VALUE} occurrences
378 * <p>This method refines {@link Collection#remove} to further specify that it
390 * <p>This method refines {@link Collection#removeAll} to further specify that
399 * <p>This method refines {@link Collection#retainAll} to further specify that