ฉันใช้ยูทิลิตี้ที่กำหนดเองของฉันเพื่อส่งคอลเลกชันที่มีอยู่ถ้ามี
หลัก:
public static <T> Collection<T> toCollection(Iterable<T> iterable) {
if (iterable instanceof Collection) {
return (Collection<T>) iterable;
} else {
return Lists.newArrayList(iterable);
}
}
ตามหลักการข้างต้นจะใช้ ImmutableList แต่ ImmutableCollection ไม่อนุญาตให้มี null ซึ่งอาจให้ผลลัพธ์ที่ไม่พึงประสงค์
แบบทดสอบ:
@Test
public void testToCollectionAlreadyCollection() {
ArrayList<String> list = Lists.newArrayList(FIRST, MIDDLE, LAST);
assertSame("no need to change, just cast", list, toCollection(list));
}
@Test
public void testIterableToCollection() {
final ArrayList<String> expected = Lists.newArrayList(FIRST, null, MIDDLE, LAST);
Collection<String> collection = toCollection(new Iterable<String>() {
@Override
public Iterator<String> iterator() {
return expected.iterator();
}
});
assertNotSame("a new list must have been created", expected, collection);
assertTrue(expected + " != " + collection, CollectionUtils.isEqualCollection(expected, collection));
}
ฉันใช้ยูทิลิตีที่คล้ายกันสำหรับประเภทย่อยทั้งหมดของคอลเลกชัน (ชุดรายการ ฯลฯ ) ฉันคิดว่าสิ่งเหล่านี้จะเป็นส่วนหนึ่งของ Guava แต่ฉันไม่พบมัน