码迷,mamicode.com
首页 > 编程语言 > 详细

java Map Optional

时间:2017-04-25 14:59:26      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ide   span   exception   integer   his   als   play   code   except   

技术分享
public Map<Integer,String> getCity(List<Integer> cityIds) throws  Exception{
        Map<Integer,String> cityNames =   new LinkedHashMap<>();
        List<CityMapping> citys = this.getAllCity();
        for(Integer cityId : cityIds) {
            Optional<CityMapping> cityItem = citys.stream().filter(x -> x.getCityId().equals(cityId) ).findFirst();
            if(cityItem.isPresent()){
                cityNames.put(cityId,cityItem.get().getCityName());
            }
        }
        return  cityNames;
    }
Optional

 

java Map Optional

标签:ide   span   exception   integer   his   als   play   code   except   

原文地址:http://www.cnblogs.com/caohuimingfa/p/6761696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!