миграция Java 7 в Java 8 - forEach в forEach в forEach и в результате в HashMap? - PullRequest
0 голосов
/ 27 сентября 2019

Мой код java7:

final Map<String, Method> result = new HashMap<>();
final Set<Class<?>> classes = getClasses(co.glue());

for (final Class<?> c : classes) {
    final Method[] methods = c.getDeclaredMethods();
    for (final Method method : methods) {
        for (final Annotation stepAnnotation : method.getAnnotations()) {
            if (stepAnnotation.annotationType().isAnnotationPresent(StepDefAnnotation.class)) {
                result.put(stepAnnotation.toString(), method);
            }
        }
    }
}
return result;

Я пытаюсь с stream + flatMap + map + filter

result = classes.stream()
                .flatMap(c-> c.getDeclaredMethods()
                   .stream())
                   .map(Annotation::getAnnotations)
                   .filter(...?????);

1 Ответ

2 голосов
/ 27 сентября 2019

Вы можете сделать это с stream и flatMap, например:

 return classes.stream()
                .flatMap(c -> Arrays.stream(c.getDeclaredMethods()))
                .flatMap(m -> Arrays.stream(m.getAnnotations())
                        .filter(stepAnnotation -> stepAnnotation.annotationType().isAnnotationPresent(StepDefAnnotation.class))
                        .map(ann -> new AbstractMap.SimpleEntry<>(ann.toString(), m)))
                .collect(Collectors.toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue));
...