mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 09:29:10 +07:00
18 lines
453 B
Java
18 lines
453 B
Java
import java.lang.reflect.Method;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
class X {
|
|
public void foo(Class<?> cls)
|
|
{
|
|
Stream.of(cls.getMethods())
|
|
.filter(method -> {
|
|
Class<?> c = method.getReturnType();
|
|
return Collection.class.isAssignableFrom(c) || Map.class.isAssignableFrom(c);
|
|
})
|
|
.collect(Collectors.<Method>toList());
|
|
}
|
|
}
|