Home | History | Annotate | Download | only in collect

Lines Matching refs:values

35  * iteration order. Does not permit null keys or values.
191 * Stores a collection of values with the same key in the built multimap.
193 * @throws NullPointerException if {@code key}, {@code values}, or any
194 * element in {@code values} is null. The builder is left in an invalid
197 @Override public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
199 for (V value : values) {
206 * Stores an array of values with the same key in the built multimap.
211 @Override public Builder<K, V> putAll(K key, V... values) {
212 return putAll(key, Arrays.asList(values));
218 * of the {@code multimap.asMap()} view, with new keys and values following
219 * any existing keys and values.
274 Collection<? extends V> values = entry.getValue();
275 ImmutableSet<V> set = ImmutableSet.copyOf(values);
292 * Returns an immutable set of the values for the given key. If no mappings
294 * The values are in the same order as the parameters used to build this
318 K key, Iterable<? extends V> values) {
326 * Its iterator traverses the values for the first key, the values for the
339 * key, the number of values for that key, and the key's values