Java: What is the best way to filter a Collection? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:24:00Zhttp://stackoverflow.com/feeds/question/122105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection7Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T16:26:26Z2009-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#1221285Answer by Kevin Wong for Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T16:28:43Z2008-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#1221396Answer by Heath Borders for Java: What is the best way to filter a Collection?Heath Borders2008-09-23T16:29:49Z2008-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#1222001Answer by ykaganovich for Java: What is the best way to filter a Collection?ykaganovich2008-09-23T16:41:08Z2008-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#1222042Answer by jon for Java: What is the best way to filter a Collection?jon2008-09-23T16:41:27Z2008-09-23T16:41:27Z<p>The setup:</p>
<pre><code>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();
}
}
}
</code></pre>
<p>The usage:</p>
<pre><code>List<MyObject> myList = ...;
filterCollection(myList, new Predicate<MyObject>() {
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#1222062Answer by Vladimir Dyuzhev for Java: What is the best way to filter a Collection?Vladimir Dyuzhev2008-09-23T16:41:32Z2008-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<Foo> 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<Foo>(){
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#12220712Answer by Alan for Java: What is the best way to filter a Collection?Alan2008-09-23T16:41:41Z2008-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<T> { 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<User></code> implements <code>Predicate<T></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 <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;
}
</code></pre>
<p>So, assuming that you have the use of the above might be</p>
<pre><code>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);
</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#1222470Answer by skaffman for Java: What is the best way to filter a Collection?skaffman2008-09-23T16:48:47Z2008-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#1227730Answer by Kevin Wong for Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T18:21:13Z2009-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#3295420Answer by Farid for Java: What is the best way to filter a Collection?Farid2008-11-30T22:48:56Z2008-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#3371353Answer by Adrian for Java: What is the best way to filter a Collection?Adrian2008-12-03T13:45:55Z2008-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<String> collection = ...
for (Select<String> each : select(collection)) {
each.yield = each.value.length() > 3;
}
Collection<String> 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#13856983Answer by Mario Fusco for Java: What is the best way to filter a Collection?Mario Fusco2009-09-06T13:37:49Z2009-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<Person> 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>