7 Ocak 2020 Salı

Collectors toMap metodu - keyMapper + valueMapper + Merge Function + Supplier

Giriş
toMap metodunun iki parametreli hali burada
toMap metodunun üç parametreli hali burada.
toMap metodunun dört parametreli hali burada.

Örnek
Şöyle yaparız
Collectors.toMap(
  Function.identity(), 
  String::length, 
  (u, v) -> {
    throw new IllegalStateException(String.format("Duplicate key %s", u));
  }, 
  LinkedHashMap::new
)

Hiç yorum yok:

Yorum Gönder