ViewChanges.java 文件源码

java
阅读 28 收藏 0 点赞 0 评论 0

项目:morf 作者:
/**
 * Correct case of names with respect to all the views we know about.
 *
 * @return equivalent collection with names case-corrected where possible.
 */
private Collection<String> correctCase(Collection<String> names) {
  return newHashSet(Collections2.transform(names, new Function<String, String>() {
    @Override public String apply(String name) {
      for (View view: allViews) {
        if (view.getName().equalsIgnoreCase(name)) {
          return view.getName();
        }
      }
      return name;
    }
  }));
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号