Home | History | Annotate | Download | only in collect

Lines Matching refs:values

32  * order. Does not permit null keys or values.
132 * immutable entry with those values.
178 * Associates all of the given map's keys and values in the built map.
321 * Returns an immutable collection of the values in this map. The values are
324 public abstract ImmutableCollection<V> values();
338 // not caching hash code since it could change if map values are mutable
356 private final Object[] values;
359 values = new Object[map.size()];
363 values[i] = entry.getValue();
373 builder.put(keys[i], values[i]);