(String[] args)
| 10 | |
| 11 | public class FunctionalMap { |
| 12 | public static void main(String[] args) { |
| 13 | MAP.entrySet().stream() |
| 14 | .map(Map.Entry::getValue) |
| 15 | .filter(v -> v.startsWith("Dark")) |
| 16 | .map(v -> v.replaceFirst("Dark", "Hot")) |
| 17 | .forEach(System.out::println); |
| 18 | } |
| 19 | } |
| 20 | /* Output: |
| 21 | HotBlue |