mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
479 B
Java
16 lines
479 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 ->//my comment to keep
|
|
Collection.class.isAssignableFrom(<selection>method.getReturnType()</selection>) || Map.class.isAssignableFrom(method.getReturnType()))
|
|
.collect(Collectors.<Method>toList());
|
|
}
|
|
}
|