Searched defs:toMap (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DCollectors.java125 * {@link #toMap(Function, Function, BinaryOperator) toMap()}, which always
1166 * may have duplicates, use {@link #toMap(Function, Function, BinaryOperator)}
1177 * students.stream().collect(toMap(Functions.identity(),
1184 * students.stream().collect(toMap(Student::getId,
1205 * @see #toMap(Function, Function, BinaryOperator)
1206 * @see #toMap(Function, Function, BinaryOperator, Supplier)
1210 Collector<T, ?, Map<K,U>> toMap(Function<? super T, ? extends K> keyMapper, method in class:Collectors
1212 return toMap(keyMapper, valueMapper, throwingMerger(), HashMap::new);
1227 * mapping to the same key. The other forms of {@code toMap} simpl
1268 Collector<T, ?, Map<K,U>> toMap(Function<? super T, ? extends K> keyMapper, method in class:Collectors
1315 Collector<T, ?, M> toMap(Function<? super T, ? extends K> keyMapper, method in class:Collectors
[all...]

Completed in 42 milliseconds