标签: guava
我正在尝试制作一个可能为null的集合副本,导致ImmutableList.copyOf(collection)失败。
ImmutableList.copyOf(collection)
在制作像
CollectionUtils.isEmpty(collection) ? ImmutableList.of() : ImmutableList.copyOf(collection)
对于列表和任何集合,是否有更优雅的方法?