Home | History | Annotate | Download | only in collect

Lines Matching refs:keys

32  * order. Does not permit null keys or values.
81 * @throws IllegalArgumentException if duplicate keys are provided
90 * @throws IllegalArgumentException if duplicate keys are provided
101 * @throws IllegalArgumentException if duplicate keys are provided
112 * @throws IllegalArgumentException if duplicate keys are provided
170 * keys are not allowed, and will cause {@link #build} to fail.
178 * Associates all of the given map's keys and values in the built map.
179 * Duplicate keys are not allowed, and will cause {@link #build} to fail.
196 * @throws IllegalArgumentException if duplicate keys were added
220 * {@code map} somehow contains entries with duplicate keys (for example, if
315 * Returns an immutable set of the keys in this map. These keys are in
355 private final Object[] keys;
358 keys = new Object[map.size()];
362 keys[i] = entry.getKey();
372 for (int i = 0; i < keys.length; i++) {
373 builder.put(keys[i], values[i]);