I want to filter a java.util.Collection based on a predicate.
|
|
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: |
|||||||||||||||||||||
|
|
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 implementers 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. Update: In the utility class (let's say Predicate), I have added a select method with an option for default value when the predicate don't return the expected value, and also a static property for params to be used inside the new IPredicate.
} The following example looks for missing objects between collections:
The following example, looks for an instance in a collection, and returns the first element of the collection as default value when the instance is not found:
|
|||||||||||||||||||||
|
|
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. |
|||||||||||
|
|
|
|||||||||||
|
|
"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. |
|||
|
|
The setup:
The usage:
|
|||||
|
|
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 |
|||||
|
|
Are you sure you want to filter the Collection itself, rather than an iterator? |
||||
|
|
|
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
|
|||||
|
|
The Collections2.filter(Collection,Predicate) method in Google's Guava library does just what you're looking for. |
||||
|
|
|
Let’s look at how to filter a built-in JDK List and a MutableList using GS Collections.
If you wanted to filter the numbers less than 3, you would expect the following outputs.
Here’s how you can filter using an anonymous inner class as the Predicate.
Here are some alternatives to filtering JDK lists and GS Collections MutableLists using the Predicates factory.
Here is a version that doesn't allocate an object for the predicate, by using the Predicates2 factory instead with the selectWith method that takes a Predicate2.
Sometimes you want to filter on a negative condition. There is a special method in GS Collections for that called reject.
Here’s how you can filter using a Java 8 lambda as the Predicate.
The method partition will return two collections, containing the elements selected by and rejected by the Predicate.
Note: I am a developer on GS Collections. |
|||
|
|
|
Use the jbfilter framework : http://code.google.com/p/jbfilter/ |
|||
|
|
|
I wrote an extended Iterable class that support applying functional algorithms without copying the collection content. Usage:
The code above will actually execute
|
|||
|
|
|
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
|
|||||||
|
|
Old question, but since this is not in any of the above answers, this is for completeness: There's always the imperative way. First have predicate interface or whatever to define the predicate:
And then.
...which you can of course make a one-liner without the And obviously, if you do not need to have the test code in a variable/parameter, then you can just directly use some static method or method of MyClass in the condition. Or if you do have a predicate as a parameter, but need to apply additional non-variable condition, just add it to the if. This approach has the big benefit of not depending on any 3rd party stuff: documentation, undocumented behavior, licensing conditions, old things breaking with new versions... Another big benefit is, it is understood by anybody who knows Java (or C++, or C#, or...). Naturally, if you are already including a 3rd party library, which must be known by anybody working on the project, and it has support for stuff like this, then by all means use that instead! |
|||
|
|
|
Filtering is not be the only way to retrieve objects matching a predicate. There are more scalable ways to do this. Filtering is like doing a table scan without indexes. Performance will degrade as the number of objects in the collection increases, or as the complexity of the query increases. An alternative approach using CQEngine (Collection Query Engine) which is based on set theory, is discussed in similar question: How do you query object collections in Java (Criteria/SQL-like)? |
||||
|
|