Java: What is the best way to filter a Collection? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:24:00Z http://stackoverflow.com/feeds/question/122105 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection 7 Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T16:26:26Z 2009-09-06T15:07:56Z <p>I want to filter a <code>java.util.Collection</code> based on a predicate.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122128#122128 5 Answer by Kevin Wong for Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T16:28:43Z 2008-09-23T16:28:43Z <p>org.apache.commons.collections.CollectionUtils#filter(Collection,Predicate)</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122139#122139 6 Answer by Heath Borders for Java: What is the best way to filter a Collection? Heath Borders 2008-09-23T16:29:49Z 2008-09-23T18:21:18Z <p>Consider <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> for an updated Collections framework that supports generics.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122200#122200 1 Answer by ykaganovich for Java: What is the best way to filter a Collection? ykaganovich 2008-09-23T16:41:08Z 2008-09-23T16:41:08Z <p>Are you sure you want to filter the Collection itself, rather than an iterator?</p> <p>see org.apache.commons.collections.iterators.FilterIterator</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122204#122204 2 Answer by jon for Java: What is the best way to filter a Collection? jon 2008-09-23T16:41:27Z 2008-09-23T16:41:27Z <p>The setup:</p> <pre><code>public interface Predicate&lt;T&gt; { public boolean filter(T t); } void filterCollection(Collection&lt;T&gt; col, Predicate&lt;T&gt; predicate) { for (Iterator i = col.iterator(); i.hasNext();) { T obj = i.next(); if (predicate.filter(obj)) { i.remove(); } } } </code></pre> <p>The usage:</p> <pre><code>List&lt;MyObject&gt; myList = ...; filterCollection(myList, new Predicate&lt;MyObject&gt;() { public boolean filter(MyObject obj) { return obj.shouldFilter(); } }); </code></pre> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122206#122206 2 Answer by Vladimir Dyuzhev for Java: What is the best way to filter a Collection? Vladimir Dyuzhev 2008-09-23T16:41:32Z 2008-09-23T16:41:32Z <p>"Best" way is too wide a request. Is it "shortest"? "Fastest"? "Readable"? Filter in place or into another collection?</p> <p>Simplest (but not most readable) way is to iterate it and use Iterator.remove() method:</p> <pre><code>Iterator&lt;Foo&gt; it = col.iterator(); while( it.hasNext() ) { Foo foo = it.next(); if( !condition(foo) ) it.remove(); } </code></pre> <p>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:</p> <pre><code>CollectionUtils.filterInPlace(col, new IPredicate&lt;Foo&gt;(){ public boolean keepIt(Foo foo) { return foo.isBar(); } }); </code></pre> <p>where filterInPlace() iterate the collection and calls Predicate.keepIt() to learn if the instance to be kept in the collection.</p> <p>I don't really see a justification for bringing in a third-party library just for this task.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122207#122207 12 Answer by Alan for Java: What is the best way to filter a Collection? Alan 2008-09-23T16:41:41Z 2008-09-24T18:53:08Z <p>Assuming that you are using <a href="http://java.sun.com/j2se/1.5.0/docs/index.html" rel="nofollow">Java 1.5</a>, and that you cannot add <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a>, I would do something very similar to what the Google guys did. This is a slight variation on Jon's comments.</p> <p>First add this interface to your codebase.</p> <pre><code>public interface Predicate&lt;T&gt; { boolean apply(T type); } </code></pre> <p>Its implementors can answer when a certain predicate is true of a certain type. E.g. If <code>T</code> were <code>User</code> and <code>AuthorizedUserPredicate&lt;User&gt;</code> implements <code>Predicate&lt;T&gt;</code>, then <code>AuthorizedUserPredicate#apply</code> returns whether the passed in <code>User</code> is authorized.</p> <p>Then in some utility class, you could say</p> <pre><code>public static &lt;T&gt; Collection&lt;T&gt; filter(Collection&lt;T&gt; target, Predicate&lt;T&gt; predicate) { Collection&lt;T&gt; result = new ArrayList&lt;T&gt;(); for (T element: target) { if (predicate.apply(element)) { result.add(element); } } return result; } </code></pre> <p>So, assuming that you have the use of the above might be</p> <pre><code>Predicate&lt;User&gt; isAuthorized = new Predicate&lt;User&gt;() { public boolean apply(User user) { // binds a boolean method in User to a reference return user.isAuthorized(); } }; // allUsers is a Collection&lt;User&gt; Collection&lt;User&gt; authorizedUsers = filter(allUsers, isAuthorized); </code></pre> <p>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.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122247#122247 0 Answer by skaffman for Java: What is the best way to filter a Collection? skaffman 2008-09-23T16:48:47Z 2008-09-23T16:48:47Z <p>There's a Java 5 port of Commons Collections available from <a href="http://larvalabs.com/collections/" rel="nofollow">http://larvalabs.com/collections/</a> - very useful, and fully generified.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122773#122773 0 Answer by Kevin Wong for Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T18:21:13Z 2009-09-06T15:07:56Z <pre><code>com.google.common.collect.Collections2#filter(Collection,Predicate) </code></pre> <p>in <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a></p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/329542#329542 0 Answer by Farid for Java: What is the best way to filter a Collection? Farid 2008-11-30T22:48:56Z 2008-11-30T22:48:56Z <p>Use the jbfilter framework : <a href="http://code.google.com/p/jbfilter/" rel="nofollow">http://code.google.com/p/jbfilter/</a></p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/337135#337135 3 Answer by Adrian for Java: What is the best way to filter a Collection? Adrian 2008-12-03T13:45:55Z 2008-12-03T16:20:21Z <p>With the ForEach DSL you may write</p> <pre><code>import static ch.akuhn.util.query.Query.select; import static ch.akuhn.util.query.Query.$result; import ch.akuhn.util.query.Select; Collection&lt;String&gt; collection = ... for (Select&lt;String&gt; each : select(collection)) { each.yield = each.value.length() &gt; 3; } Collection&lt;String&gt; result = $result(); </code></pre> <p>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.</p> <p>All iteration styles supported by the ForEach DSL are</p> <ul> <li><code>AllSatisfy</code></li> <li><code>AnySatisfy</code></li> <li><code>Collect</code></li> <li><code>Counnt</code></li> <li><code>CutPieces</code></li> <li><code>Detect</code></li> <li><code>GroupedBy</code></li> <li><code>IndexOf</code></li> <li><code>InjectInto</code></li> <li><code>Reject</code></li> <li><code>Select</code></li> </ul> <p>For more details, please refer to <a href="https://www.iam.unibe.ch/scg/svn_repos/Sources/ForEach" rel="nofollow">https://www.iam.unibe.ch/scg/svn_repos/Sources/ForEach</a></p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/1385698#1385698 3 Answer by Mario Fusco for Java: What is the best way to filter a Collection? Mario Fusco 2009-09-06T13:37:49Z 2009-09-06T15:06:55Z <p>lambdaj allows to filter collections without writing loops or inner classes as in the following example:</p> <pre><code>List&lt;Person&gt; beerDrinkers = select(persons, having(on(Person.class).getAge(), greaterThan(16))); </code></pre> <p>Can you imagine something more readable? You can find it here:</p> <p><a href="http://code.google.com/p/lambdaj/" rel="nofollow">http://code.google.com/p/lambdaj/</a></p>