I want to filter a java.util.Collection based on a predicate.

link|improve this question

50% accept rate
2  
why would there be a situation where you would want to filter collections? – Rachel Jun 18 '11 at 22:54
63  
why would there not be? – njzk2 Oct 6 '11 at 9:48
Maybe you should select an answer. – Doctor Oreo Jan 18 at 18:26
You should take a look at Scala: gist.github.com/2304539 – santiagobasulto Apr 4 at 18:31
feedback

13 Answers

up vote 31 down vote accepted

lambdaj allows to filter collections without writing loops or inner classes as in the following example:

List<Person> beerDrinkers = select(persons, having(on(Person.class).getAge(),
    greaterThan(16)));

Can you imagine something more readable? You can find it here:

http://code.google.com/p/lambdaj/

link|improve this answer
1  
Wow! Thanks for this answer, this is definitely going to be helpful! – Sandman Nov 14 '09 at 16:36
1  
Yeah, the lambdaj guys have done a great job. – CurtainDog Nov 29 '10 at 3:14
4  
Yes, I can imagine something more readable. Ruby code! persons.select!{|p| p.age > 16} Sorry couldn't resist :) – Brian Armstrong Jun 10 '11 at 5:45
6  
Of course I was speaking about java. Said that, I believe that Scala is even better: persons.filter(_.age > 16) ... And it's statically typed! :) – Mario Fusco Jun 11 '11 at 21:03
4  
Nice but the static imports obfuscate whats going on. For reference, select/having/on are static imports on ch.lambdaj.Lambda, greaterThan is org.hamcrest.Matchers – MikePatel Mar 15 at 11:57
show 3 more comments
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.

public interface Predicate<T> { boolean apply(T type); }

Its implementors can answer when a certain predicate is true of a certain type. E.g. If T were User and AuthorizedUserPredicate<User> implements Predicate<T>, then AuthorizedUserPredicate#apply returns whether the passed in User is authorized.

Then in some utility class, you could say

public static <T> Collection<T> filter(Collection<T> target, Predicate<T> predicate) {
    Collection<T> result = new ArrayList<T>();
    for (T element: target) {
        if (predicate.apply(element)) {
            result.add(element);
        }
    }
    return result;
}

So, assuming that you have the use of the above might be

Predicate<User> isAuthorized = new Predicate<User>() {
    public boolean apply(User user) {
        // binds a boolean method in User to a reference
        return user.isAuthorized();
    }
};
// allUsers is a Collection<User>
Collection<User> authorizedUsers = filter(allUsers, isAuthorized);

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.

link|improve this answer
4  
Yeah, but I hate to reinvent the wheel, again, repeatedly. I'd rather find some utility library that does when I want. – Kevin Wong Sep 25 '08 at 18:18
^ ...that does what I want ^ – Kevin Wong Sep 25 '08 at 18:18
1  
This isn't the best way in case you don't want the new collection. Use the filter iterator metaphor, which may input into a new collection, or it may be all that you a need. – Josh Oct 11 '08 at 19:54
Thanks Alan! This was key! – user295190 Apr 14 '10 at 3:01
7  
And Java still does not have lambdas :( – Martin Konicek Jul 19 '11 at 17:16
show 3 more comments
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.

link|improve this answer
I actually had that in the comment, but I left out "http://" – Heath Borders Sep 23 '08 at 18:21
ya, I knew about the Google collections lib. The version I was using didn't have Collections2 in it. I added a new answer to this question that lists the specific method. – Kevin Wong Sep 23 '08 at 18:25
5  
Kevin, Iterables.filter() and Iterators.filter() have been there from the beginning, and are usually all you need. – Kevin Bourrillion Nov 8 '09 at 16:43
feedback

org.apache.commons.collections.CollectionUtils#filter(Collection,Predicate)

link|improve this answer
this is okay, but it's no generic, and modifies the collection in place (not nice) – Kevin Wong Sep 23 '08 at 16:30
1  
There are other filter methods in CollectionUtils that do not modify the original collection. – skaffman Sep 6 '09 at 15:08
4  
In particular, the method that does not modify the collection in place is org.apache.commons.collections.CollectionUtils#select(Collection,Predicate) – Eero Sep 29 '10 at 12:27
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:

Iterator<Foo> it = col.iterator();
while( it.hasNext() ) {
  Foo foo = it.next();
  if( !condition(foo) ) it.remove();
}

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:

CollectionUtils.filterInPlace(col,
  new IPredicate<Foo>(){
    public boolean keepIt(Foo foo) {
      return foo.isBar();
    }
  });

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.

link|improve this answer
feedback

With the ForEach DSL you may write

import static ch.akuhn.util.query.Query.select;
import static ch.akuhn.util.query.Query.$result;
import ch.akuhn.util.query.Select;

Collection<String> collection = ...

for (Select<String> each : select(collection)) {
    each.yield = each.value.length() > 3;
}

Collection<String> result = $result();

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

  • AllSatisfy
  • AnySatisfy
  • Collect
  • Counnt
  • CutPieces
  • Detect
  • GroupedBy
  • IndexOf
  • InjectInto
  • Reject
  • Select

For more details, please refer to https://www.iam.unibe.ch/scg/svn_repos/Sources/ForEach

link|improve this answer
That's pretty clever! A lot of work to implement a nice Ruby-ish syntax though! The negative is that your filter is not a first-class function and hence cannot be re-used. Roll on closures... – oxbow_lakes Feb 25 '09 at 21:47
Good point. One way to reuse the loop body is by refactoring the loop into a method that takes the selection query as parameter. That is however by far not as handy and powerful as real closures, for sure. – akuhn Feb 28 '09 at 16:00
feedback

Are you sure you want to filter the Collection itself, rather than an iterator?

see org.apache.commons.collections.iterators.FilterIterator

link|improve this answer
feedback

The setup:

public interface Predicate<T> {
  public boolean filter(T t);
}

void filterCollection(Collection<T> col, Predicate<T> predicate) {
  for (Iterator i = col.iterator(); i.hasNext();) {
    T obj = i.next();
    if (predicate.filter(obj)) {
      i.remove();
    }
  }
}

The usage:

List<MyObject> myList = ...;
filterCollection(myList, new Predicate<MyObject>() {
  public boolean filter(MyObject obj) {
    return obj.shouldFilter();
  }
});
link|improve this answer
1  
Fine, but I prefer Alan implementation because you get a copy of the collection instead of altering it. Moreover, Alan's code is thread safe while yours is not. – marcospereira Sep 24 '08 at 3:45
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:

LinkedList<Person> list = ......
LinkedList<Person> filtered = 
           Query.from(list).where(Condition.ensure("age", Op.GTE, 21));

OR

LinkedList<Person> list = ....
LinkedList<Person> filtered = Query.from(list).where("x => x.age >= 21");
link|improve this answer
Link? Even if your library is inefficient or otherwise unusable it might be interesting to look at if the source is available. – MatrixFrog Jun 20 '11 at 22:39
Made the repo public (net-machine.com/indefero/p/jdclib/source/tree/master). You are interested in the expression package. The test package has a tester with example usage. I never really did much work on the string query interface referenced above (didnt feel like writing a real parser), so the explicit query interface in the tester is the way to go. – jdc0589 Jun 23 '11 at 3:02
feedback

Use the jbfilter framework : http://code.google.com/p/jbfilter/

link|improve this answer
feedback
com.google.common.collect.Collections2#filter(Collection,Predicate)

in Google Collections

link|improve this answer
feedback

I wrote an extended Iterable class that support applying functional algorithms without copying the collection content.

Usage:

List<Integer> myList = new ArrayList<Integer>(){ 1, 2, 3, 4, 5 }

Iterable<Integer> filtered = Iterable.wrap(myList).select(new Predicate1<Integer>()
{
    public Boolean call(Integer n) throws FunctionalException
    {
        return n % 2 == 0;
    }
})

for( int n : filtered )
{
    System.out.println(n);
}

The code above will actually execute

for( int n : myList )
{
    if( n % 2 == 0 ) 
    {
        System.out.println(n);
    }
}
link|improve this answer
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

  • Support of collection (java.util.Collection, java.util.Map and Array) properties.
  • Support of collection inside collection of any depth.
  • Support of inner queries.
  • Support of parameterized queries.
  • Can filter 1 million records in few 100 ms.
  • Filter ( query) is given in simple json format, it is like Mangodb queries. Following are some examples.
  • { "id":{"$le":"10"}
    • where object id property is less than equals to 10.
  • { "id": {"$in":["0", "100"]}}
    • where object id property is 0 or 100.
  • {"lineItems":{"lineAmount":"1"}}
    • where lineItems collection property of parameterized type has lineAmount equals to 1.
  • { "$and":[{"id": "0"}, {"billingAddress":{"city":"DEL"}}]}
    • where id property is 0 and billingAddress.city property is DEL.
  • {"lineItems":{"taxes":{ "key":{"code":"GST"}, "value":{"$gt": "1.01"}}}}
    • where lineItems collection property of parameterized type which has taxes map type property of parameteriszed type has code equals to GST value greater than 1.01.
  • {'$or':[{'code':'10'},{'skus': {'$and':[{'price':{'$in':['20', '40']}}, {'code':'RedApple'}]}}]}
    • Select all products where product code is 10 or sku price in 20 and 40 and sku code is "RedApple".
link|improve this answer
You should disclaim that you are the author (as I think it is the case). – assylias Apr 5 at 11:01
Yes, I am the author of this library. – Kamran Ali Khan Apr 6 at 5:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.