Java 10 ile geliyor. Açıklaması şöyle.
The Collectors.toUnmodifiableList would return a Collector that disallows null values and will throw NullPointerException if it is presented with a null value.
Örnek
Şöyle yaparız.List<Integer> result = Arrays.asList(1, 2, 3, 4)
.stream()
.collect(Collectors.toUnmodifiableList());
Hiç yorum yok:
Yorum Gönder