在ImmutableList.copyOf中有一种处理null集合的优雅方法吗?

时间:2017-07-26 16:14:27

标签: guava

我正在尝试制作一个可能为null的集合副本,导致ImmutableList.copyOf(collection)失败。

在制作像

这样的副本之前,我不想进行空检查
CollectionUtils.isEmpty(collection) 
   ? ImmutableList.of() 
   : ImmutableList.copyOf(collection)

对于列表和任何集合,是否有更优雅的方法?

0 个答案:

没有答案