码迷,mamicode.com
首页 > 其他好文 > 详细

Triple的使用

时间:2019-06-03 14:40:21      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:time   art   start   tar   eval   tca   ota   repo   double   

public Triple<Long, Long, Double> getCarRunSummary(String did, Date startDate, Date endDate) {
    Map<String, Object> map = kuduRepository.getCarRunSummary(did, startDate, endDate);
if (map != null) {
    Long mileage = map.get("total_mileage") != null ? ((Number) map.get("total_mileage")).longValue() : null;
    Long runTime = map.get("total_run_time") != null ? ((Number) map.get("total_run_time")).longValue() : null;
    Double fuelConsumption = map.get("total_fuel_consumption") != null ? ((Number) map.get("total_fuel_consumption")).doubleValue() : null;
    return Triple.of(mileage, runTime, fuelConsumption);
}
    return null;
}

  

Triple的使用

标签:time   art   start   tar   eval   tca   ota   repo   double   

原文地址:https://www.cnblogs.com/charkey/p/10967158.html

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