How do I filter a java collection in Android in such a way that my original collection is preserved?
The original collection must remain unchanged, and any changes made to the filtered collection should only affect it and not the original.
Is it possible to achieve this without adding another lib? I have read that apache and guava may make this process easier.