I have something like this:
public class Foo {
public String id;
}
and
Vector<Foo> foos;
I need to get an object from the collection by id.
In C# I would do like this: foos.Where(o => o.id = 7)
What's the best way to do that in Java ?
|
I have something like this:
and
I need to get an object from the collection by id. In C# I would do like this: What's the best way to do that in Java ? |
|||||||
|
|
You probably want to store your data in a Map<Integer, Foo> instead of a List<Foo>. A TreeMap, for instance, would keep everything in sorted order. |
|||
|
|
|
For a start, I'd suggest using Use the Google Collections API, in particular Iterables.filter. It's pretty clunky at the moment - you'll either need to set up a predicate beforehand, or use an anonymous inner class, due to the lack of lambda expressions. Also, Java doesn't have extension methods, so you'll call Note that using |
||||
|
|
|
With Google Collections, that would be:
Iterables.filter (and Collections2.filter, which does the same) gives you a live view on the filtered collection, just like seh's concept, but with less code. In order to create a list out of it again, I pass it to the newArrayList method of Google Collection's List utility class. Just like everybody else, I would strongly suggest not use Vector as a declaration. Instead, try to use the most generic type possible, e.g., List<Foo> or even Collection<Foo>. Also, unless you need the synchronization feature of Vector, use ArrayList (or some other type suited for the problem). |
|||
|
|
|
First of all, don't use
|
|||||||||||||||
|
You pass your collection, and the key (an id, or whatever), and the method returns your object. Your object's class must implement the Note: the collection must be sorted before calling |
|||||||||||
|
|
I think, the traditional way in Java is to iterate through the list and search for the Foo with the id you looked for (complexity O(n)). If that's to slow, you might consider using a HashMap structure where you map your foo to its index. One could 'hide' the lookup by subclassing the collection class:
and use ListOfFoos instead of ArrayList from now on as a new Collection type which allows direct acces to a Foo by its index number. |
|||
|
|
|
If you have an ArrayList (or similar - i.e. something from the Collections library) then Apache Commons Collections has lots of facilities for filtering/iterating etc. Note that unlike the Google Collections library referenced in Jon's answer, there's no support for generics. |
||||
|
|
|
Give a look at lambdaj. It allows to manipulate, filter, sort, aggregate collections in a pseudo-functional and very readable way. |
|||
|
|
|
The following types provide filtering over sequences. This solution is general but not well suited for sets or sorted sequences, each of which offer more efficient means to find and drop elements matching some exemplar. First, define an
It's 2009 and Java still lacks closures and first-class functions, so we sheepishly introduce this family:
Now, wrap a generator around a unary predicate to build a sequence filter:
Now, expose a convenience function:
|
|||||
|