अमरूद के साथ, आप उपयोग कर सकते हैं Iterables.concat(Iterable<T> ...)
, यह सभी पुनरावृत्तियों का जीवंत दृश्य बनाता है, एक में समाप्त (यदि आप पुनरावृत्तियों को बदलते हैं, तो संक्षिप्त संस्करण भी बदल जाता है)। फिर कंफर्टेबल इटेरेबल को साथ लपेटें Iterables.unmodifiableIterable(Iterable<T>)
(मैंने पहले केवल रीड-ओनली आवश्यकता नहीं देखी थी)।
से Iterables.concat( .. )
Javadocs:
कई पुनरावृत्तियों को एक एकल पुनरावृत्ति में संयोजित करता है। लौटाए गए पुनरावृत्ति में एक पुनरावृत्ति है जो इनपुट में प्रत्येक पुनरावृत्ति के तत्वों का पता लगाता है। इनपुट पुनरावृत्तियों को आवश्यक होने तक प्रदूषित नहीं किया जाता है। remove()
जब पुनरावृत्त इनपुट का समर्थन करता है, तो लौटाए गए पुनरावृत्त का समर्थन करता है।
हालांकि यह स्पष्ट रूप से यह नहीं कहता है कि यह एक लाइव दृश्य है, अंतिम वाक्य का तात्पर्य यह है कि यह है ( Iterator.remove()
विधि का समर्थन केवल अगर बैकिंग इटरेटर समर्थन करता है तो यह संभव नहीं है जब तक कि लाइव दृश्य का उपयोग न किया जाए)
नमूना कोड:
final List<Integer> first = Lists.newArrayList(1, 2, 3);
final List<Integer> second = Lists.newArrayList(4, 5, 6);
final List<Integer> third = Lists.newArrayList(7, 8, 9);
final Iterable<Integer> all =
Iterables.unmodifiableIterable(
Iterables.concat(first, second, third));
System.out.println(all);
third.add(9999999);
System.out.println(all);
आउटपुट:
[1, 2, 3, 4, 5, 6, 7, 8, 9]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 9999999]
संपादित करें:
डेमियन से अनुरोध करके, यहां एक समान विधि है जो एक लाइव संग्रह दृश्य देता है
public final class CollectionsX {
static class JoinedCollectionView<E> implements Collection<E> {
private final Collection<? extends E>[] items;
public JoinedCollectionView(final Collection<? extends E>[] items) {
this.items = items;
}
@Override
public boolean addAll(final Collection<? extends E> c) {
throw new UnsupportedOperationException();
}
@Override
public void clear() {
for (final Collection<? extends E> coll : items) {
coll.clear();
}
}
@Override
public boolean contains(final Object o) {
throw new UnsupportedOperationException();
}
@Override
public boolean containsAll(final Collection<?> c) {
throw new UnsupportedOperationException();
}
@Override
public boolean isEmpty() {
return !iterator().hasNext();
}
@Override
public Iterator<E> iterator() {
return Iterables.concat(items).iterator();
}
@Override
public boolean remove(final Object o) {
throw new UnsupportedOperationException();
}
@Override
public boolean removeAll(final Collection<?> c) {
throw new UnsupportedOperationException();
}
@Override
public boolean retainAll(final Collection<?> c) {
throw new UnsupportedOperationException();
}
@Override
public int size() {
int ct = 0;
for (final Collection<? extends E> coll : items) {
ct += coll.size();
}
return ct;
}
@Override
public Object[] toArray() {
throw new UnsupportedOperationException();
}
@Override
public <T> T[] toArray(T[] a) {
throw new UnsupportedOperationException();
}
@Override
public boolean add(E e) {
throw new UnsupportedOperationException();
}
}
/**
* Returns a live aggregated collection view of the collections passed in.
* <p>
* All methods except {@link Collection#size()}, {@link Collection#clear()},
* {@link Collection#isEmpty()} and {@link Iterable#iterator()}
* throw {@link UnsupportedOperationException} in the returned Collection.
* <p>
* None of the above methods is thread safe (nor would there be an easy way
* of making them).
*/
public static <T> Collection<T> combine(
final Collection<? extends T>... items) {
return new JoinedCollectionView<T>(items);
}
private CollectionsX() {
}
}