我工作的项目最近已从Java 7切换到Java 8.我希望能够找到具有单个抽象方法的接口作为将功能接口引入我们的代码库的候选者.(将现有接口注释为@FunctionalInterface
,从接口扩展它们java.util.function
,或者可能只是替换它们).
该反思的项目能够找到并返回在类路径中的所有类.这是一个有效的例子:
ReflectionUtils.forNames(new Reflections(new ConfigurationBuilder().setScanners(new SubTypesScanner(false)) .addUrls(ClasspathHelper.forClassLoader())) .getAllTypes()).stream() .filter(Class::isInterface) .collect(toMap(c -> c, c -> Arrays.stream(c.getMethods()) .filter(m -> !m.isDefault()) .filter(m -> !Modifier.isStatic(m.getModifiers())) .filter(m -> !isObjectMethod(m)) .collect(toSet()))) .entrySet().stream() .filter(e -> e.getValue().size() == 1) .sorted(comparing(e -> e.getKey().toString())) .map(e -> e.getKey().toString() + " has single method " + e.getValue())//getOnlyElement(e.getValue())) .forEachOrdered(System.out::println);
该isObjectMethod
助手的定义是这样的:
private static final SetOBJECT_METHODS = ImmutableSet.copyOf(Object.class.getMethods()); private static boolean isObjectMethod(Method m){ return OBJECT_METHODS.stream() .anyMatch(om -> m.getName().equals(om.getName()) && m.getReturnType().equals(om.getReturnType()) && Arrays.equals(m.getParameterTypes(), om.getParameterTypes())); }
这不会帮助您返回源代码并添加注释,但它会为您提供一个可供使用的列表.