I want to filter a java.util.Collection based on a predicate.
|
7
|
|
|
|
|
|
org.apache.commons.collections.CollectionUtils#filter(Collection,Predicate) |
||||
|
|
|
Consider Google Collections for an updated Collections framework that supports generics. |
||||||||||
|
|
|
Are you sure you want to filter the Collection itself, rather than an iterator? see org.apache.commons.collections.iterators.FilterIterator |
||
|
|
|
|
The setup:
The usage:
|
||
|
|
|
"Best" way is too wide a request. Is it "shortest"? "Fastest"? "Readable"? Filter in place or into another collection? Simplest (but not most readable) way is to iterate it and use Iterator.remove() method:
Now, to make it more readable, you can wrap it into a utility method. Then invent a IPredicate interface, create an anonymous implementation of that interface and do something like:
where filterInPlace() iterate the collection and calls Predicate.keepIt() to learn if the instance to be kept in the collection. I don't really see a justification for bringing in a third-party library just for this task. |
||
|
|
|
|
Assuming that you are using Java 1.5, and that you cannot add Google Collections, I would do something very similar to what the Google guys did. This is a slight variation on Jon's comments. First add this interface to your codebase.
Its implementors can answer when a certain predicate is true of a certain type. E.g. If Then in some utility class, you could say
So, assuming that you have the use of the above might be
If performance on the linear check is of concern, then I might want to have a domain object that has the target collection. The domain object that has the target collection would have filtering logic for the methods that initialize, add and set the target collection. |
||||||
|
|
|
There's a Java 5 port of Commons Collections available from http://larvalabs.com/collections/ - very useful, and fully generified. |
||
|
|
|
|
|
|||
|
|
|
|
Use the jbfilter framework : http://code.google.com/p/jbfilter/ |
||
|
|
|
|
With the ForEach DSL you may write
Given a collection of [The, quick, brown, fox, jumps, over, the, lazy, dog] this results in [quick, brown, jumps, over, lazy], ie all strings longer than three characters. All iteration styles supported by the ForEach DSL are
For more details, please refer to https://www.iam.unibe.ch/scg/svn_repos/Sources/ForEach |
||||
|
|
|
lambdaj allows to filter collections without writing loops or inner classes as in the following example:
Can you imagine something more readable? You can find it here: |
|||
|
