I want to filter a java.util.Collection based on a predicate.
feedback
|
|
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: | |||||||||||||||||||||
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
Consider Google Collections for an updated Collections framework that supports generics. UPDATE: The google collections library is now deprecated. You should use the latest release of Guava instead. It still has all the same extensions to the collections framework including a mechanism for filtering based on a predicate. | |||||||||||
feedback
|
|
| |||||||||||
feedback
|
|
"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. | |||
|
feedback
|
|
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 | |||||
feedback
|
|
Are you sure you want to filter the Collection itself, rather than an iterator? | ||||
|
feedback
|
|
The setup:
The usage:
| |||||
feedback
|
|
This, combined with the lack of real closures, is my biggest gripe for Java. Honestly, most of the methods mentioned above are pretty easy to read and REALLY efficient; however, after spending time with .Net, Erlang, etc... list comprehension integrated at the language level makes everything so much cleaner. Without additions at the language level, Java just cant be as clean as many other languages in this area. If performance is a huge concern, Google collections is the way to go (or write your own simple predicate utility). Lambdaj syntax is more readable for some people, but it is not quite as efficient. And then there is a library I wrote. I will ignore any questions in regard to its efficiency (yea, its that bad)...... Yes, i know its clearly reflection based, and no I don't actually use it, but it does work:
OR
| |||||
feedback
|
|
Use the jbfilter framework : http://code.google.com/p/jbfilter/ | |||
|
feedback
|
| ||||
|
feedback
|
|
I wrote an extended Iterable class that support applying functional algorithms without copying the collection content. Usage:
The code above will actually execute
| |||
|
feedback
|
|
JFilter http://code.google.com/p/jfilter/ is best suited for your requirement. JFilter is a simple and high performance open source library to query collection of Java beans. Key features
| |||||
|
feedback
|